pub struct Spaces {Show 19 fields
pub id: String,
pub host_ids: Option<Vec<String>>,
pub created_at: Option<DateTime<Utc>>,
pub creator_id: Option<String>,
pub ended_at: Option<DateTime<Utc>>,
pub lang: Option<String>,
pub is_ticketed: Option<bool>,
pub invited_user_ids: Option<Vec<String>>,
pub participant_count: Option<i64>,
pub scheduled_start: Option<DateTime<Utc>>,
pub speaker_ids: Option<Vec<String>>,
pub started_at: Option<DateTime<Utc>>,
pub state: State,
pub subscriber_count: Option<i64>,
pub topic_ids: Option<Vec<String>>,
pub topics: Option<Vec<Topics>>,
pub title: Option<String>,
pub updated_at: Option<DateTime<Utc>>,
pub extra: HashMap<String, Value>,
}
Fields§
§id: String
§host_ids: Option<Vec<String>>
§created_at: Option<DateTime<Utc>>
§creator_id: Option<String>
§ended_at: Option<DateTime<Utc>>
§lang: Option<String>
§is_ticketed: Option<bool>
§invited_user_ids: Option<Vec<String>>
§participant_count: Option<i64>
§scheduled_start: Option<DateTime<Utc>>
§speaker_ids: Option<Vec<String>>
§started_at: Option<DateTime<Utc>>
§state: State
§subscriber_count: Option<i64>
§topic_ids: Option<Vec<String>>
§topics: Option<Vec<Topics>>
§title: Option<String>
§updated_at: Option<DateTime<Utc>>
§extra: HashMap<String, Value>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Spaces
impl<'de> Deserialize<'de> for Spaces
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Spaces
impl RefUnwindSafe for Spaces
impl Send for Spaces
impl Sync for Spaces
impl Unpin for Spaces
impl UnwindSafe for Spaces
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more