pub struct ListGroup {
pub raw_range: Range<usize>,
pub ordered: bool,
pub items: Vec<ListItem>,
}Expand description
A contiguous list at one indentation depth. Nested lists are
distinct ListGroup entries.
Fields§
§raw_range: Range<usize>§ordered: bool§items: Vec<ListItem>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ListGroup
impl RefUnwindSafe for ListGroup
impl Send for ListGroup
impl Sync for ListGroup
impl Unpin for ListGroup
impl UnsafeUnpin for ListGroup
impl UnwindSafe for ListGroup
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