pub trait IMagicSignalTrackMethods: IMagicSignalTrack {
// Provided methods
fn get_end_time(self) -> f32 { ... }
fn set_end_time(self, value: impl Into<f32>) { ... }
fn ctor(
self,
title: impl Into<Il2CppString>,
help: impl Into<Il2CppString>,
is_sub_bullet: impl Into<bool>,
) { ... }
fn find(self, cmd: impl Into<MagicCommand>) -> MagicSignal { ... }
}Provided Methods§
Sourcefn get_end_time(self) -> f32
fn get_end_time(self) -> f32
get_EndTime() overload
Sourcefn set_end_time(self, value: impl Into<f32>)
fn set_end_time(self, value: impl Into<f32>)
set_EndTime(f32) overload
Sourcefn ctor(
self,
title: impl Into<Il2CppString>,
help: impl Into<Il2CppString>,
is_sub_bullet: impl Into<bool>,
)
fn ctor( self, title: impl Into<Il2CppString>, help: impl Into<Il2CppString>, is_sub_bullet: impl Into<bool>, )
.ctor(::unity::Il2CppString, ::unity::Il2CppString, bool) overload
Sourcefn find(self, cmd: impl Into<MagicCommand>) -> MagicSignal
fn find(self, cmd: impl Into<MagicCommand>) -> MagicSignal
Find(crate::combat::magiccommand::MagicCommand) 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: IMagicSignalTrack> IMagicSignalTrackMethods for __T
Available on crate feature
combat-magicsignaltrack only.