pub struct ListElement {
pub span: Span,
pub kind: String,
pub parameters: Parameters,
pub children: Vec<ListContentItem>,
}Expand description
리스트 요소 {{{#list …}}}
Fields§
§span: Span§kind: String§parameters: Parameters§children: Vec<ListContentItem>Trait Implementations§
Source§impl Clone for ListElement
impl Clone for ListElement
Source§fn clone(&self) -> ListElement
fn clone(&self) -> ListElement
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListElement
impl Debug for ListElement
Auto Trait Implementations§
impl Freeze for ListElement
impl RefUnwindSafe for ListElement
impl Send for ListElement
impl Sync for ListElement
impl Unpin for ListElement
impl UnwindSafe for ListElement
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