pub struct TMController {
pub pos_controller: Option<Box<Controller>>,
pub rot_controller: Option<Box<Controller>>,
pub scale_controller: Option<Box<Controller>>,
}Expand description
Transform controller — position + rotation + scale controllers.
Fields§
§pos_controller: Option<Box<Controller>>§rot_controller: Option<Box<Controller>>§scale_controller: Option<Box<Controller>>Implementations§
Trait Implementations§
Source§impl Clone for TMController
impl Clone for TMController
Source§fn clone(&self) -> TMController
fn clone(&self) -> TMController
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 TMController
impl RefUnwindSafe for TMController
impl Send for TMController
impl Sync for TMController
impl Unpin for TMController
impl UnsafeUnpin for TMController
impl UnwindSafe for TMController
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