pub struct TopThread {
pub post: Option<Box<Post>>,
pub channel_id: Option<String>,
pub channel_display_name: Option<String>,
pub channel_name: Option<String>,
pub participants: Option<Vec<String>>,
pub user_information: Option<Box<InsightUserInformation>>,
}
Fields§
§post: Option<Box<Post>>
§channel_id: Option<String>
§channel_display_name: Option<String>
§channel_name: Option<String>
§participants: Option<Vec<String>>
§user_information: Option<Box<InsightUserInformation>>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TopThread
impl<'de> Deserialize<'de> for TopThread
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 TopThread
Auto Trait Implementations§
impl Freeze for TopThread
impl RefUnwindSafe for TopThread
impl Send for TopThread
impl Sync for TopThread
impl Unpin for TopThread
impl UnwindSafe for TopThread
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