pub struct ForumThreadAuthor {
pub id: UserId,
pub username: String,
pub karma: i32,
}
Fields§
§id: UserId
§username: String
§karma: i32
Trait Implementations§
Source§impl Clone for ForumThreadAuthor
impl Clone for ForumThreadAuthor
Source§fn clone(&self) -> ForumThreadAuthor
fn clone(&self) -> ForumThreadAuthor
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 ForumThreadAuthor
impl Debug for ForumThreadAuthor
Source§impl<'de> Deserialize<'de> for ForumThreadAuthor
impl<'de> Deserialize<'de> for ForumThreadAuthor
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 ForumThreadAuthor
impl PartialEq for ForumThreadAuthor
impl StructuralPartialEq for ForumThreadAuthor
Auto Trait Implementations§
impl Freeze for ForumThreadAuthor
impl RefUnwindSafe for ForumThreadAuthor
impl Send for ForumThreadAuthor
impl Sync for ForumThreadAuthor
impl Unpin for ForumThreadAuthor
impl UnwindSafe for ForumThreadAuthor
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