pub trait IConvertShoot: IConverterWithUt {
// Provided methods
fn camera_list(self) -> Array<CameraPosition> { ... }
fn set_camera_list(self, value: Array<CameraPosition>) { ... }
fn m_last_unused(self) -> i32 { ... }
fn set_m_last_unused(self, value: i32) { ... }
}Provided Methods§
fn camera_list(self) -> Array<CameraPosition>
fn set_camera_list(self, value: Array<CameraPosition>)
fn m_last_unused(self) -> i32
fn set_m_last_unused(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.