pub struct MdListItem {
pub content: MdBlockElement,
}
Expand description
Represents a list item in markdown, which can contain block elements.
§Fields
content
- The content of the list item, which can be any block-level markdown element.
Fields§
§content: MdBlockElement
Trait Implementations§
Source§impl Debug for MdListItem
impl Debug for MdListItem
Source§impl PartialEq for MdListItem
impl PartialEq for MdListItem
Source§impl ToHtml for MdListItem
impl ToHtml for MdListItem
impl StructuralPartialEq for MdListItem
Auto Trait Implementations§
impl Freeze for MdListItem
impl RefUnwindSafe for MdListItem
impl Send for MdListItem
impl Sync for MdListItem
impl Unpin for MdListItem
impl UnwindSafe for MdListItem
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