pub struct IndentBlock {
pub level: usize,
pub lines: Vec<String>,
}Expand description
An “indent block” that groups lines by their indent level.
Fields§
§level: usize§lines: Vec<String>Implementations§
Auto Trait Implementations§
impl Freeze for IndentBlock
impl RefUnwindSafe for IndentBlock
impl Send for IndentBlock
impl Sync for IndentBlock
impl Unpin for IndentBlock
impl UnsafeUnpin for IndentBlock
impl UnwindSafe for IndentBlock
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