pub trait IMagicSignalMethods: IMagicSignal {
// Provided methods
fn get_time(self) -> f32 { ... }
fn is_fired_between(
self,
prev_time: impl Into<f32>,
curr_time: impl Into<f32>,
) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn is_fired_between(
self,
prev_time: impl Into<f32>,
curr_time: impl Into<f32>,
) -> bool
fn is_fired_between( self, prev_time: impl Into<f32>, curr_time: impl Into<f32>, ) -> bool
IsFiredBetween(f32, f32) overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IMagicSignal> IMagicSignalMethods for __T
Available on crate feature
combat-magicsignal only.