Enum rustc_ast::util::comments::CommentStyle
source · 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§
source§impl Clone for CommentStyle
impl Clone for CommentStyle
source§fn clone(&self) -> CommentStyle
fn clone(&self) -> CommentStyle
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CommentStyle
impl Debug for CommentStyle
source§impl PartialEq<CommentStyle> for CommentStyle
impl PartialEq<CommentStyle> for CommentStyle
source§fn eq(&self, other: &CommentStyle) -> bool
fn eq(&self, other: &CommentStyle) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn 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