Enum rustc_ast_pretty::pp::IndentStyle
source · [−]enum IndentStyle {
Visual,
Block {
offset: isize,
},
}
Variants
Visual
Vertically aligned under whatever column this block begins at.
fn demo(arg1: usize,
arg2: usize) {}
Block
Fields
offset: isize
Indented relative to the indentation level of the previous line.
fn demo(
arg1: usize,
arg2: usize,
) {}
Trait Implementations
sourceimpl Clone for IndentStyle
impl Clone for IndentStyle
sourcefn clone(&self) -> IndentStyle
fn clone(&self) -> IndentStyle
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 PartialEq<IndentStyle> for IndentStyle
impl PartialEq<IndentStyle> for IndentStyle
sourcefn eq(&self, other: &IndentStyle) -> bool
fn eq(&self, other: &IndentStyle) -> bool
impl Copy for IndentStyle
impl StructuralPartialEq for IndentStyle
Auto Trait Implementations
impl RefUnwindSafe for IndentStyle
impl Send for IndentStyle
impl Sync for IndentStyle
impl Unpin for IndentStyle
impl UnwindSafe for IndentStyle
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: 16 bytes
Size for each variant:
Visual
: 0 bytesBlock
: 8 bytes