pub struct CompoundController {
pub x_controller: Option<Box<Controller>>,
pub y_controller: Option<Box<Controller>>,
pub z_controller: Option<Box<Controller>>,
}Expand description
Compound controller — combines X/Y/Z sub-controllers.
Fields§
§x_controller: Option<Box<Controller>>§y_controller: Option<Box<Controller>>§z_controller: Option<Box<Controller>>Implementations§
Trait Implementations§
Source§impl Clone for CompoundController
impl Clone for CompoundController
Source§fn clone(&self) -> CompoundController
fn clone(&self) -> CompoundController
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CompoundController
impl RefUnwindSafe for CompoundController
impl Send for CompoundController
impl Sync for CompoundController
impl Unpin for CompoundController
impl UnsafeUnpin for CompoundController
impl UnwindSafe for CompoundController
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more