pub struct GuardianEvent {
pub handle: GuardianHandle,
pub tag: u32,
pub ability_index: usize,
pub action_index: u16,
pub spawned_at: SimTime,
pub expires_at: SimTime,
}Expand description
Context supplied to a guardian action callback.
Fields§
§handle: GuardianHandle§tag: u32§ability_index: usize§action_index: u16§spawned_at: SimTime§expires_at: SimTimeTrait Implementations§
Source§impl Clone for GuardianEvent
impl Clone for GuardianEvent
Source§fn clone(&self) -> GuardianEvent
fn clone(&self) -> GuardianEvent
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 GuardianEvent
impl Debug for GuardianEvent
Source§impl PartialEq for GuardianEvent
impl PartialEq for GuardianEvent
impl Copy for GuardianEvent
impl Eq for GuardianEvent
impl StructuralPartialEq for GuardianEvent
Auto Trait Implementations§
impl Freeze for GuardianEvent
impl RefUnwindSafe for GuardianEvent
impl Send for GuardianEvent
impl Sync for GuardianEvent
impl Unpin for GuardianEvent
impl UnsafeUnpin for GuardianEvent
impl UnwindSafe for GuardianEvent
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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