pub trait IPhotographSelectFaceAccMenuItem: IBasicMenuItem {
// Provided methods
fn m_is_current(self) -> bool { ... }
fn set_m_is_current(self, value: bool) { ... }
fn m_is_mascot(self) -> bool { ... }
fn set_m_is_mascot(self, value: bool) { ... }
fn m_face_acc_data(self) -> AccessoryData { ... }
fn set_m_face_acc_data(self, value: AccessoryData) { ... }
fn m_dispos_manager(self) -> PhotographDisposManager { ... }
fn set_m_dispos_manager(self, value: PhotographDisposManager) { ... }
}Provided Methods§
fn m_is_current(self) -> bool
fn set_m_is_current(self, value: bool)
fn m_is_mascot(self) -> bool
fn set_m_is_mascot(self, value: bool)
fn m_face_acc_data(self) -> AccessoryData
fn set_m_face_acc_data(self, value: AccessoryData)
fn m_dispos_manager(self) -> PhotographDisposManager
fn set_m_dispos_manager(self, value: PhotographDisposManager)
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.