[][src]Struct orgize::elements::ListItem

pub struct ListItem<'a> {
    pub bullet: Cow<'a, str>,
    pub indent: usize,
    pub ordered: bool,
}

List Item Element

Fields

bullet: Cow<'a, str>

List item bullet

indent: usize

List item indent, number of whitespaces

ordered: bool

List item type

Implementations

impl<'_> ListItem<'_>[src]

pub fn into_owned(self) -> ListItem<'static>[src]

Trait Implementations

impl<'a> Clone for ListItem<'a>[src]

impl<'a> Debug for ListItem<'a>[src]

impl<'a> From<ListItem<'a>> for Element<'a>[src]

impl<'a> Serialize for ListItem<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ListItem<'a>

impl<'a> Send for ListItem<'a>

impl<'a> Sync for ListItem<'a>

impl<'a> Unpin for ListItem<'a>

impl<'a> UnwindSafe for ListItem<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.