Skip to main content

ICombatViewer

Trait ICombatViewer 

Source
pub trait ICombatViewer: IMonoBehaviour {
    // Provided methods
    fn settings(self) -> CombatViewerSettings { ... }
    fn set_settings(self, value: CombatViewerSettings) { ... }
    fn play_all(self) -> bool { ... }
    fn set_play_all(self, value: bool) { ... }
    fn play_all_idx(self) -> i32 { ... }
    fn set_play_all_idx(self, value: i32) { ... }
}

Provided Methods§

Source

fn settings(self) -> CombatViewerSettings

Source

fn set_settings(self, value: CombatViewerSettings)

Source

fn play_all(self) -> bool

Source

fn set_play_all(self, value: bool)

Source

fn play_all_idx(self) -> i32

Source

fn set_play_all_idx(self, value: i32)

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§