pub trait ICameraControllerDollyCart: IBaseCameraController {
// Provided methods
fn frame_count(self) -> i32 { ... }
fn set_frame_count(self, value: i32) { ... }
fn m_last_height(self) -> f32 { ... }
fn set_m_last_height(self, value: f32) { ... }
fn m_state(self) -> CameraControllerDollyCart_State { ... }
fn set_m_state(self, value: CameraControllerDollyCart_State) { ... }
}Provided Methods§
fn frame_count(self) -> i32
fn set_frame_count(self, value: i32)
fn m_last_height(self) -> f32
fn set_m_last_height(self, value: f32)
fn m_state(self) -> CameraControllerDollyCart_State
fn set_m_state(self, value: CameraControllerDollyCart_State)
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.