pub enum DynFrame {
Icrf,
Cirf,
Tirf,
Itrf,
Iau(DynOrigin),
}Variants§
Trait Implementations§
Source§impl Ord for DynFrame
impl Ord for DynFrame
Source§impl PartialOrd for DynFrame
impl PartialOrd for DynFrame
Source§impl ReferenceFrame for DynFrame
impl ReferenceFrame for DynFrame
Source§impl TryBodyFixed for DynFrame
impl TryBodyFixed for DynFrame
fn try_body_fixed(&self) -> Result<(), NonBodyFixedFrameError>
Source§impl TryQuasiInertial for DynFrame
impl TryQuasiInertial for DynFrame
fn try_quasi_inertial(&self) -> Result<(), NonQuasiInertialFrameError>
Source§impl TryTransform<DynFrame, DynFrame, DynTimeScale> for DefaultTransformProvider
impl TryTransform<DynFrame, DynFrame, DynTimeScale> for DefaultTransformProvider
type Error = DynTransformError
fn try_transform( &self, origin: DynFrame, target: DynFrame, time: Time<DynTimeScale>, ) -> Result<Rotation, Self::Error>
impl Copy for DynFrame
impl Eq for DynFrame
impl StructuralPartialEq for DynFrame
Auto Trait Implementations§
impl Freeze for DynFrame
impl RefUnwindSafe for DynFrame
impl Send for DynFrame
impl Sync for DynFrame
impl Unpin for DynFrame
impl UnwindSafe for DynFrame
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more