pub struct ListItem {
pub raw_range: Range<usize>,
pub marker_byte: u8,
}Expand description
One item within a ListGroup.
Fields§
§raw_range: Range<usize>§marker_byte: u8Byte at the start of the marker (-, *, +, or '0'..='9').
For ordered lists this is the first digit of the index.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ListItem
impl RefUnwindSafe for ListItem
impl Send for ListItem
impl Sync for ListItem
impl Unpin for ListItem
impl UnsafeUnpin for ListItem
impl UnwindSafe for ListItem
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