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§
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)
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.