pub struct FactionRank {
    pub level: i32,
    pub name: String,
    pub division: i32,
    pub position: i32,
    pub wins: i32,
}Fields§
§level: i32/**
name: String§division: i32§position: i32§wins: i32Trait Implementations§
Source§impl Clone for FactionRank
 
impl Clone for FactionRank
Source§fn clone(&self) -> FactionRank
 
fn clone(&self) -> FactionRank
Returns a duplicate 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 FactionRank
 
impl Debug for FactionRank
Source§impl<'de> Deserialize<'de> for FactionRank
 
impl<'de> Deserialize<'de> for FactionRank
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 FactionRank
 
impl PartialEq for FactionRank
impl StructuralPartialEq for FactionRank
Auto Trait Implementations§
impl Freeze for FactionRank
impl RefUnwindSafe for FactionRank
impl Send for FactionRank
impl Sync for FactionRank
impl Unpin for FactionRank
impl UnwindSafe for FactionRank
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