[][src]Enum vimwiki_server::components::EnhancedListItemAttribute

pub enum EnhancedListItemAttribute {
    TodoIncomplete,
    TodoPartiallyComplete1,
    TodoPartiallyComplete2,
    TodoPartiallyComplete3,
    TodoComplete,
    TodoRejected,
}

Represents additional attributes that can be added to an enhanced list item

Variants

TodoIncomplete

Flags list item as a TODO item that has not been completed

TodoPartiallyComplete1

Flags list item as a TODO item that is partially complete (1-33%)

TodoPartiallyComplete2

Flags list item as a TODO item that is partially complete (34-66%)

TodoPartiallyComplete3

Flags list item as a TODO item that is partially complete (67-99%)

TodoComplete

Flags list item as a TODO item that is complete

TodoRejected

Flags list item as a TODO item that has been rejected

Implementations

impl EnhancedListItemAttribute[src]

pub fn todo_attributes() -> Vec<EnhancedListItemAttribute>

Notable traits for Vec<u8>

impl Write for Vec<u8>
[src]

Trait Implementations

impl Clone for EnhancedListItemAttribute[src]

impl Copy for EnhancedListItemAttribute[src]

impl Debug for EnhancedListItemAttribute[src]

impl<'de> Deserialize<'de> for EnhancedListItemAttribute[src]

impl Eq for EnhancedListItemAttribute[src]

impl Hash for EnhancedListItemAttribute[src]

impl PartialEq<EnhancedListItemAttribute> for EnhancedListItemAttribute[src]

impl Serialize for EnhancedListItemAttribute[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,