pub struct AttitudeController<F>{
pub roll_processor: AxisProcessor<F>,
pub pitch_processor: AxisProcessor<F>,
pub yaw_processor: AxisProcessor<F>,
}Expand description
A container for the three primary rotational control axes.
Fields§
§roll_processor: AxisProcessor<F>§pitch_processor: AxisProcessor<F>§yaw_processor: AxisProcessor<F>Auto Trait Implementations§
impl<F> Freeze for AttitudeController<F>where
F: Freeze,
impl<F> RefUnwindSafe for AttitudeController<F>where
F: RefUnwindSafe,
impl<F> Send for AttitudeController<F>where
F: Send,
impl<F> Sync for AttitudeController<F>where
F: Sync,
impl<F> Unpin for AttitudeController<F>where
F: Unpin,
impl<F> UnsafeUnpin for AttitudeController<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for AttitudeController<F>where
F: UnwindSafe,
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