pub struct ForumThreadUserExtended {Show 14 fields
pub id: ForumThreadId,
pub title: String,
pub forum_id: ForumId,
pub posts: i32,
pub rating: i32,
pub views: i32,
pub author: ForumThreadAuthor,
pub last_poster: Option<ForumThreadAuthor>,
pub first_post_time: i32,
pub last_post_time: Option<i32>,
pub has_poll: bool,
pub is_locked: bool,
pub is_sticky: bool,
pub new_posts: Option<i32>,
}
Fields§
§id: ForumThreadId
§title: String
§forum_id: ForumId
§posts: i32
§rating: i32
§views: i32
Total number of times players have opened this thread.
last_poster: Option<ForumThreadAuthor>
§first_post_time: i32
§last_post_time: Option<i32>
§has_poll: bool
§is_locked: bool
§is_sticky: bool
§new_posts: Option<i32>
Trait Implementations§
Source§impl Clone for ForumThreadUserExtended
impl Clone for ForumThreadUserExtended
Source§fn clone(&self) -> ForumThreadUserExtended
fn clone(&self) -> ForumThreadUserExtended
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 ForumThreadUserExtended
impl Debug for ForumThreadUserExtended
Source§impl<'de> Deserialize<'de> for ForumThreadUserExtended
impl<'de> Deserialize<'de> for ForumThreadUserExtended
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 ForumThreadUserExtended
impl PartialEq for ForumThreadUserExtended
impl StructuralPartialEq for ForumThreadUserExtended
Auto Trait Implementations§
impl Freeze for ForumThreadUserExtended
impl RefUnwindSafe for ForumThreadUserExtended
impl Send for ForumThreadUserExtended
impl Sync for ForumThreadUserExtended
impl Unpin for ForumThreadUserExtended
impl UnwindSafe for ForumThreadUserExtended
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