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
Indented relative to the indentation level of the previous line.
fn demo(
arg1: usize,
arg2: usize,
) {}
Trait Implementations§
source§impl Clone for IndentStyle
impl Clone for IndentStyle
source§fn clone(&self) -> IndentStyle
fn clone(&self) -> IndentStyle
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 PartialEq<IndentStyle> for IndentStyle
impl PartialEq<IndentStyle> for IndentStyle
source§fn eq(&self, other: &IndentStyle) -> bool
fn eq(&self, other: &IndentStyle) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
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: 16 bytes
Size for each variant:
Visual
: 0 bytesBlock
: 8 bytes