pub struct TeamPlayRoundWinEvent {
pub team: u8,
pub win_reason: u8,
pub flag_cap_limit: u16,
pub full_round: u16,
pub round_time: f32,
pub losing_team_num_caps: u16,
pub was_sudden_death: u8,
}
Fields§
§team: u8
§win_reason: u8
§flag_cap_limit: u16
§full_round: u16
§round_time: f32
§losing_team_num_caps: u16
§was_sudden_death: u8
Trait Implementations§
Source§impl Clone for TeamPlayRoundWinEvent
impl Clone for TeamPlayRoundWinEvent
Source§fn clone(&self) -> TeamPlayRoundWinEvent
fn clone(&self) -> TeamPlayRoundWinEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TeamPlayRoundWinEvent
impl Debug for TeamPlayRoundWinEvent
Source§impl<'de> Deserialize<'de> for TeamPlayRoundWinEvent
impl<'de> Deserialize<'de> for TeamPlayRoundWinEvent
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 TeamPlayRoundWinEvent
impl PartialEq for TeamPlayRoundWinEvent
Source§impl Serialize for TeamPlayRoundWinEvent
impl Serialize for TeamPlayRoundWinEvent
impl StructuralPartialEq for TeamPlayRoundWinEvent
Auto Trait Implementations§
impl Freeze for TeamPlayRoundWinEvent
impl RefUnwindSafe for TeamPlayRoundWinEvent
impl Send for TeamPlayRoundWinEvent
impl Sync for TeamPlayRoundWinEvent
impl Unpin for TeamPlayRoundWinEvent
impl UnwindSafe for TeamPlayRoundWinEvent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more