Skip to main content

ICharacterSignal

Trait ICharacterSignal 

Source
pub trait ICharacterSignal: IMonoBehaviour {
    // Provided methods
    fn cp_cached(self) -> bool { ... }
    fn set_cp_cached(self, value: bool) { ... }
    fn cp(self) -> Character { ... }
    fn set_cp(self, value: Character) { ... }
    fn hit_passed(self) -> bool { ... }
    fn set_hit_passed(self, value: bool) { ... }
}

Provided Methods§

Source

fn cp_cached(self) -> bool

Source

fn set_cp_cached(self, value: bool)

Source

fn cp(self) -> Character

Source

fn set_cp(self, value: Character)

Source

fn hit_passed(self) -> bool

Source

fn set_hit_passed(self, value: bool)

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§