Skip to main content

IPrefetchedSignalStoreMethods

Trait IPrefetchedSignalStoreMethods 

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

Source

fn has(self, hash: impl Into<i32>) -> bool

Has(i32) overload

Source

fn get_item(self, hash: impl Into<i32>) -> PrefetchedSignal

get_Item(i32) overload

Source

fn ctor(self)

.ctor() overload

Source

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

Source

fn get_has_knockoff_attack(self) -> bool

get_HasKnockoffAttack() overload

Source

fn get_lottery_items(self) -> IReadOnlyCollection_1<PrefetchedSignal>

get_LotteryItems() overload

Source

fn booking(self, hashes: impl Into<Array<i32>>)

Booking(::unity::Array<i32>) overload

Source

fn lottery(self) -> PrefetchedSignal

Lottery() overload

Source

fn get_best(self) -> PrefetchedSignal

GetBest() overload

Source

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§

Source§

impl<__T: IPrefetchedSignalStore> IPrefetchedSignalStoreMethods for __T

Available on crate feature combat-prefetchedsignalstore only.