Skip to main content

IMagicSignalMethods

Trait IMagicSignalMethods 

Source
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§

Source

fn get_time(self) -> f32

get_Time() overload

Source

fn is_fired_between( self, prev_time: impl Into<f32>, curr_time: impl Into<f32>, ) -> bool

IsFiredBetween(f32, f32) overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IMagicSignal> IMagicSignalMethods for __T

Available on crate feature combat-magicsignal only.