pub trait IPrefetchedSignalStoreMethods: IPrefetchedSignalStore {
// Provided methods
fn has(self, hash: impl Into<i32>) -> bool { ... }
fn get_item(self, hash: impl Into<i32>) -> PrefetchedSignal { ... }
fn ctor(self) { ... }
fn ctor_2(
self,
chr: impl Into<Character>,
body_ani: impl Into<Animator>,
ride_ani: impl Into<Animator>,
) { ... }
fn get_has_knockoff_attack(self) -> bool { ... }
fn get_lottery_items(self) -> IReadOnlyCollection_1<PrefetchedSignal> { ... }
fn booking(self, hashes: impl Into<Array<i32>>) { ... }
fn lottery(self) -> PrefetchedSignal { ... }
fn get_best(self) -> PrefetchedSignal { ... }
fn select_random_one(self) -> PrefetchedSignal { ... }
}Provided Methods§
Sourcefn get_item(self, hash: impl Into<i32>) -> PrefetchedSignal
fn get_item(self, hash: impl Into<i32>) -> PrefetchedSignal
get_Item(i32) overload
Sourcefn ctor_2(
self,
chr: impl Into<Character>,
body_ani: impl Into<Animator>,
ride_ani: impl Into<Animator>,
)
fn ctor_2( self, chr: impl Into<Character>, body_ani: impl Into<Animator>, ride_ani: impl Into<Animator>, )
.ctor(crate::combat::character::Character, crate::unity_engine::animator::Animator, crate::unity_engine::animator::Animator) overload
Sourcefn get_has_knockoff_attack(self) -> bool
fn get_has_knockoff_attack(self) -> bool
get_HasKnockoffAttack() overload
Sourcefn get_lottery_items(self) -> IReadOnlyCollection_1<PrefetchedSignal>
fn get_lottery_items(self) -> IReadOnlyCollection_1<PrefetchedSignal>
get_LotteryItems() overload
Sourcefn lottery(self) -> PrefetchedSignal
fn lottery(self) -> PrefetchedSignal
Lottery() overload
Sourcefn get_best(self) -> PrefetchedSignal
fn get_best(self) -> PrefetchedSignal
GetBest() overload
Sourcefn select_random_one(self) -> PrefetchedSignal
fn select_random_one(self) -> PrefetchedSignal
SelectRandomOne() 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: IPrefetchedSignalStore> IPrefetchedSignalStoreMethods for __T
Available on crate feature
combat-prefetchedsignalstore only.