pub struct FactionRankedWarDetails {
pub id: RankedWarId,
pub start: i32,
pub end: i32,
pub target: i32,
pub winner: Option<FactionId>,
pub factions: Vec<Factions>,
}
Fields§
§id: RankedWarId
§start: i32
Timestamp the war started at.
end: i32
Timestamp the war ended at.
target: i32
§winner: Option<FactionId>
§factions: Vec<Factions>
Trait Implementations§
Source§impl Clone for FactionRankedWarDetails
impl Clone for FactionRankedWarDetails
Source§fn clone(&self) -> FactionRankedWarDetails
fn clone(&self) -> FactionRankedWarDetails
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 FactionRankedWarDetails
impl Debug for FactionRankedWarDetails
Source§impl<'de> Deserialize<'de> for FactionRankedWarDetails
impl<'de> Deserialize<'de> for FactionRankedWarDetails
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 FactionRankedWarDetails
impl PartialEq for FactionRankedWarDetails
impl StructuralPartialEq for FactionRankedWarDetails
Auto Trait Implementations§
impl Freeze for FactionRankedWarDetails
impl RefUnwindSafe for FactionRankedWarDetails
impl Send for FactionRankedWarDetails
impl Sync for FactionRankedWarDetails
impl Unpin for FactionRankedWarDetails
impl UnwindSafe for FactionRankedWarDetails
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