Struct checkvist::models::Checklist[][src]

pub struct Checklist {
    pub id: u32,
    pub name: String,
    pub options: i32,
    pub public: bool,
    pub markdown: bool,
    pub archived: bool,
    pub read_only: bool,
    pub user_count: i32,
    pub percent_completed: f32,
    pub task_count: i32,
    pub task_completed: i32,
    pub item_count: i32,
    pub tags: HashMap<String, bool>,
    pub tags_as_text: String,
    pub updated_at: DateTime<Utc>,
    pub user_updated_at: DateTime<Utc>,
}

Fields

id: u32name: Stringoptions: i32public: boolmarkdown: boolarchived: boolread_only: booluser_count: i32percent_completed: f32task_count: i32task_completed: i32item_count: i32tags: HashMap<String, bool>tags_as_text: Stringupdated_at: DateTime<Utc>user_updated_at: DateTime<Utc>

Trait Implementations

impl Debug for Checklist[src]

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

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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.