pub struct FactionRaidWarfareFaction {
pub id: FactionId,
pub name: String,
pub score: f64,
pub chain: Option<i32>,
}
Expand description
The field ‘chain’ exists only if the field ‘end’ is NOT populated in FactionRaidWarfare schema.
Fields§
§id: FactionId
§name: String
§score: f64
§chain: Option<i32>
Trait Implementations§
Source§impl Clone for FactionRaidWarfareFaction
impl Clone for FactionRaidWarfareFaction
Source§fn clone(&self) -> FactionRaidWarfareFaction
fn clone(&self) -> FactionRaidWarfareFaction
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 FactionRaidWarfareFaction
impl Debug for FactionRaidWarfareFaction
Source§impl<'de> Deserialize<'de> for FactionRaidWarfareFaction
impl<'de> Deserialize<'de> for FactionRaidWarfareFaction
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 FactionRaidWarfareFaction
Auto Trait Implementations§
impl Freeze for FactionRaidWarfareFaction
impl RefUnwindSafe for FactionRaidWarfareFaction
impl Send for FactionRaidWarfareFaction
impl Sync for FactionRaidWarfareFaction
impl Unpin for FactionRaidWarfareFaction
impl UnwindSafe for FactionRaidWarfareFaction
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