pub struct UserList {
    pub id: UserId,
    pub name: String,
    pub level: i32,
    pub faction_id: Option<FactionId>,
    pub last_action: UserLastAction,
    pub status: UserStatus,
}Fields§
§id: UserId§name: String§level: i32§faction_id: Option<FactionId>§last_action: UserLastAction§status: UserStatusTrait Implementations§
Source§impl<'de> Deserialize<'de> for UserList
 
impl<'de> Deserialize<'de> for UserList
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 UserList
Auto Trait Implementations§
impl Freeze for UserList
impl RefUnwindSafe for UserList
impl Send for UserList
impl Sync for UserList
impl Unpin for UserList
impl UnwindSafe for UserList
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