pub trait IDebugUI_Table: IDebugUI_Container {
// Provided methods
fn is_read_only(self) -> bool { ... }
fn set_is_read_only(self, value: bool) { ... }
fn m_header(self) -> Array<bool> { ... }
fn set_m_header(self, value: Array<bool>) { ... }
}Provided Methods§
fn is_read_only(self) -> bool
fn set_is_read_only(self, value: bool)
fn m_header(self) -> Array<bool>
fn set_m_header(self, value: Array<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.