[][src]Struct nanowrimo::data::GroupUserData

pub struct GroupUserData {
    pub created_at: DateTime<Utc>,
    pub entry_at: Option<DateTime<Utc>>,
    pub entry_method: EntryMethod,
    pub exit_at: Option<DateTime<Utc>>,
    pub exit_method: Option<String>,
    pub group_code_id: Option<u64>,
    pub group_id: u64,
    pub group_type: GroupType,
    pub invitation_accepted: InvitationStatus,
    pub invited_by_id: Option<u64>,
    pub is_admin: Option<bool>,
    pub latest_message: Option<String>,
    pub num_unread_messages: u64,
    pub primary: u64,
    pub updated_at: DateTime<Utc>,
    pub user_id: u64,
}

Fields

created_at: DateTime<Utc>entry_at: Option<DateTime<Utc>>entry_method: EntryMethodexit_at: Option<DateTime<Utc>>exit_method: Option<String>group_code_id: Option<u64>group_id: u64group_type: GroupTypeinvitation_accepted: InvitationStatusinvited_by_id: Option<u64>is_admin: Option<bool>latest_message: Option<String>num_unread_messages: u64primary: u64updated_at: DateTime<Utc>user_id: u64

Trait Implementations

impl Debug for GroupUserData[src]

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

impl Serialize for GroupUserData[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.