pub struct ConfirmedFlipResetEvent {
pub time: f32,
pub frame: usize,
pub reset_time: f32,
pub reset_frame: usize,
pub player: PlayerId,
pub is_team_0: bool,
pub counter_value: i32,
pub time_since_reset: f32,
}Fields§
§time: f32§frame: usize§reset_time: f32§reset_frame: usize§player: PlayerId§is_team_0: bool§counter_value: i32§time_since_reset: f32Trait Implementations§
Source§impl Clone for ConfirmedFlipResetEvent
impl Clone for ConfirmedFlipResetEvent
Source§fn clone(&self) -> ConfirmedFlipResetEvent
fn clone(&self) -> ConfirmedFlipResetEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConfirmedFlipResetEvent
impl Debug for ConfirmedFlipResetEvent
Source§impl PartialEq for ConfirmedFlipResetEvent
impl PartialEq for ConfirmedFlipResetEvent
Source§fn eq(&self, other: &ConfirmedFlipResetEvent) -> bool
fn eq(&self, other: &ConfirmedFlipResetEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConfirmedFlipResetEvent
impl Serialize for ConfirmedFlipResetEvent
impl StructuralPartialEq for ConfirmedFlipResetEvent
Auto Trait Implementations§
impl Freeze for ConfirmedFlipResetEvent
impl RefUnwindSafe for ConfirmedFlipResetEvent
impl Send for ConfirmedFlipResetEvent
impl Sync for ConfirmedFlipResetEvent
impl Unpin for ConfirmedFlipResetEvent
impl UnsafeUnpin for ConfirmedFlipResetEvent
impl UnwindSafe for ConfirmedFlipResetEvent
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