pub enum CommentStyle {
Isolated,
Trailing,
Mixed,
BlankLine,
}
Variants
Isolated
No code on either side of each line of the comment
Trailing
Code exists to the left of the comment
Mixed
Code before /* foo */ and after the comment
BlankLine
Just a manual blank line “\n\n”, for layout
Trait Implementations
sourceimpl Clone for CommentStyle
impl Clone for CommentStyle
sourcefn clone(&self) -> CommentStyle
fn clone(&self) -> CommentStyle
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CommentStyle
impl Debug for CommentStyle
sourceimpl PartialEq<CommentStyle> for CommentStyle
impl PartialEq<CommentStyle> for CommentStyle
sourcefn eq(&self, other: &CommentStyle) -> bool
fn eq(&self, other: &CommentStyle) -> bool
impl Copy for CommentStyle
impl StructuralPartialEq for CommentStyle
Auto Trait Implementations
impl RefUnwindSafe for CommentStyle
impl Send for CommentStyle
impl Sync for CommentStyle
impl Unpin for CommentStyle
impl UnwindSafe for CommentStyle
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Isolated
: 0 bytesTrailing
: 0 bytesMixed
: 0 bytesBlankLine
: 0 bytes