pub struct PmTopicSummary {
pub id: u64,
pub title: Option<String>,
pub slug: Option<String>,
pub posts_count: Option<u64>,
pub last_posted_at: Option<String>,
pub last_poster_username: Option<String>,
pub unread: Option<u64>,
}Expand description
Distilled row from /topics/private-messages-*.json.
Fields§
§id: u64§title: Option<String>§slug: Option<String>§posts_count: Option<u64>§last_posted_at: Option<String>§last_poster_username: Option<String>§unread: Option<u64>Trait Implementations§
Source§impl Clone for PmTopicSummary
impl Clone for PmTopicSummary
Source§fn clone(&self) -> PmTopicSummary
fn clone(&self) -> PmTopicSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PmTopicSummary
impl Debug for PmTopicSummary
Source§impl<'de> Deserialize<'de> for PmTopicSummary
impl<'de> Deserialize<'de> for PmTopicSummary
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 PmTopicSummary
impl RefUnwindSafe for PmTopicSummary
impl Send for PmTopicSummary
impl Sync for PmTopicSummary
impl Unpin for PmTopicSummary
impl UnsafeUnpin for PmTopicSummary
impl UnwindSafe for PmTopicSummary
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