#[non_exhaustive]pub struct Topic {Show 15 fields
pub id: i64,
pub name: Option<String>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
pub active_at: Option<DateTime>,
pub status: Option<String>,
pub account_id: Option<i64>,
pub app_url: Option<String>,
pub creator: Option<Contact>,
pub contacts: Option<Vec<Contact>>,
pub extenzions: Option<Vec<Extenzion>>,
pub collections: Option<Vec<Collection>>,
pub is_forged_sender: Option<bool>,
pub latest_entry: Option<Entry>,
pub entries: Option<Vec<Entry>>,
}Expand description
Topic detail
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: i64§name: Option<String>§created_at: Option<DateTime>ISO 8601 date-time timestamp (overrides restJson1 epoch-seconds default)
updated_at: Option<DateTime>ISO 8601 date-time timestamp (overrides restJson1 epoch-seconds default)
active_at: Option<DateTime>ISO 8601 date-time timestamp (overrides restJson1 epoch-seconds default)
status: Option<String>§account_id: Option<i64>§app_url: Option<String>§creator: Option<Contact>§contacts: Option<Vec<Contact>>§extenzions: Option<Vec<Extenzion>>§collections: Option<Vec<Collection>>§is_forged_sender: Option<bool>§latest_entry: Option<Entry>§entries: Option<Vec<Entry>>The topic’s first page of entries (summaries, no bodies). Present on GetTopic; use GetTopicEntries for the rest and GetMessage for a body.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Topic
impl<'de> Deserialize<'de> for Topic
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
impl StructuralPartialEq for Topic
Auto Trait Implementations§
impl Freeze for Topic
impl RefUnwindSafe for Topic
impl Send for Topic
impl Sync for Topic
impl Unpin for Topic
impl UnsafeUnpin for Topic
impl UnwindSafe for Topic
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