pub struct ListElement<'i> {
pub span: Span,
pub parameters: Parameters<'i>,
pub items: Vec<ListItem<'i>>,
}Fields§
§span: Span§parameters: Parameters<'i>§items: Vec<ListItem<'i>>Trait Implementations§
Source§impl<'i> Clone for ListElement<'i>
impl<'i> Clone for ListElement<'i>
Source§fn clone(&self) -> ListElement<'i>
fn clone(&self) -> ListElement<'i>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'i> Debug for ListElement<'i>
impl<'i> Debug for ListElement<'i>
Auto Trait Implementations§
impl<'i> Freeze for ListElement<'i>
impl<'i> RefUnwindSafe for ListElement<'i>
impl<'i> Send for ListElement<'i>
impl<'i> Sync for ListElement<'i>
impl<'i> Unpin for ListElement<'i>
impl<'i> UnsafeUnpin for ListElement<'i>
impl<'i> UnwindSafe for ListElement<'i>
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