[][src]Struct connpass::event::Event

pub struct Event {
    pub event_id: u32,
    pub title: String,
    pub catch: String,
    pub description: String,
    pub event_url: String,
    pub hash_tag: String,
    pub started_at: String,
    pub ended_at: String,
    pub limit: Option<u32>,
    pub event_type: String,
    pub series: Option<Series>,
    pub address: Option<String>,
    pub place: Option<String>,
    pub lat: Option<String>,
    pub lon: Option<String>,
    pub owner_id: u32,
    pub owner_nickname: String,
    pub owner_display_name: String,
    pub accepted: u32,
    pub waiting: u32,
    pub updated_at: String,
}

Fields

event_id: u32title: Stringcatch: Stringdescription: Stringevent_url: Stringhash_tag: Stringstarted_at: Stringended_at: Stringlimit: Option<u32>event_type: Stringseries: Option<Series>address: Option<String>place: Option<String>lat: Option<String>lon: Option<String>owner_id: u32owner_nickname: Stringowner_display_name: Stringaccepted: u32waiting: u32updated_at: String

Trait Implementations

impl Debug for Event[src]

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

impl Serialize for Event[src]

Auto Trait Implementations

impl RefUnwindSafe for Event

impl Send for Event

impl Sync for Event

impl Unpin for Event

impl UnwindSafe for Event

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: 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.