[][src]Struct nanowrimo::data::GroupData

pub struct GroupData {
    pub approved_by_id: u64,
    pub avatar: Option<String>,
    pub cancelled_by_id: u64,
    pub created_at: DateTime<Utc>,
    pub description: Option<String>,
    pub end_dt: Option<DateTime<Utc>>,
    pub forum_link: Option<String>,
    pub group_id: Option<u64>,
    pub group_type: GroupType,
    pub joining_rule: Option<JoiningRule>,
    pub latitude: Option<f64>,
    pub longitude: Option<f64>,
    pub max_member_count: Option<u64>,
    pub member_count: Option<u64>,
    pub name: String,
    pub plate: Option<String>,
    pub slug: String,
    pub start_dt: Option<DateTime<Utc>>,
    pub time_zone: Option<String>,
    pub updated_at: DateTime<Utc>,
    pub url: Option<String>,
    pub user_id: Option<u64>,
}

Fields

approved_by_id: u64avatar: Option<String>cancelled_by_id: u64created_at: DateTime<Utc>description: Option<String>end_dt: Option<DateTime<Utc>>forum_link: Option<String>group_id: Option<u64>group_type: GroupTypejoining_rule: Option<JoiningRule>latitude: Option<f64>longitude: Option<f64>max_member_count: Option<u64>member_count: Option<u64>name: Stringplate: Option<String>slug: Stringstart_dt: Option<DateTime<Utc>>time_zone: Option<String>updated_at: DateTime<Utc>url: Option<String>user_id: Option<u64>

Trait Implementations

impl Debug for GroupData[src]

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

impl Serialize for GroupData[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> Instrument for T[src]

impl<T> Instrument 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.