pub struct ForumSubscribedThread {
pub id: ForumThreadId,
pub forum_id: ForumId,
pub author: ForumThreadAuthor,
pub title: String,
pub posts: ForumSubscribedThreadPostsCount,
}
Fields§
§id: ForumThreadId
§forum_id: ForumId
§title: String
§posts: ForumSubscribedThreadPostsCount
Trait Implementations§
Source§impl Clone for ForumSubscribedThread
impl Clone for ForumSubscribedThread
Source§fn clone(&self) -> ForumSubscribedThread
fn clone(&self) -> ForumSubscribedThread
Returns a copy of the value. Read more
1.0.0 · 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 ForumSubscribedThread
impl Debug for ForumSubscribedThread
Source§impl<'de> Deserialize<'de> for ForumSubscribedThread
impl<'de> Deserialize<'de> for ForumSubscribedThread
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
Source§impl PartialEq for ForumSubscribedThread
impl PartialEq for ForumSubscribedThread
impl StructuralPartialEq for ForumSubscribedThread
Auto Trait Implementations§
impl Freeze for ForumSubscribedThread
impl RefUnwindSafe for ForumSubscribedThread
impl Send for ForumSubscribedThread
impl Sync for ForumSubscribedThread
impl Unpin for ForumSubscribedThread
impl UnwindSafe for ForumSubscribedThread
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