enum RawListItemBlock {
Paragraph {
start: usize,
end: usize,
},
List {
ordered: bool,
items: Vec<ListItem>,
span: SourceSpan,
},
}Variants§
Auto Trait Implementations§
impl Freeze for RawListItemBlock
impl RefUnwindSafe for RawListItemBlock
impl Send for RawListItemBlock
impl Sync for RawListItemBlock
impl Unpin for RawListItemBlock
impl UnsafeUnpin for RawListItemBlock
impl UnwindSafe for RawListItemBlock
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