pub struct AlphaBeta<T> {
pub alpha: T,
pub beta: T,
}Expand description
Balanced stationary orthoganal reference frame (i.e. clarke)
Fields§
§alpha: T§beta: TImplementations§
Trait Implementations§
Source§impl<T> From<AlphaBeta0<T>> for AlphaBeta<T>
impl<T> From<AlphaBeta0<T>> for AlphaBeta<T>
Source§fn from(alpha_beta_0: AlphaBeta0<T>) -> Self
fn from(alpha_beta_0: AlphaBeta0<T>) -> Self
Converts to this type from the input type.
impl<T: Copy> Copy for AlphaBeta<T>
impl<T> StructuralPartialEq for AlphaBeta<T>
Auto Trait Implementations§
impl<T> Freeze for AlphaBeta<T>where
T: Freeze,
impl<T> RefUnwindSafe for AlphaBeta<T>where
T: RefUnwindSafe,
impl<T> Send for AlphaBeta<T>where
T: Send,
impl<T> Sync for AlphaBeta<T>where
T: Sync,
impl<T> Unpin for AlphaBeta<T>where
T: Unpin,
impl<T> UnwindSafe for AlphaBeta<T>where
T: 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