pub struct NonBodyFixedFrameError(pub String);Expand description
The frame is not body-fixed.
Tuple Fields§
§0: StringTrait Implementations§
Source§impl Clone for NonBodyFixedFrameError
impl Clone for NonBodyFixedFrameError
Source§fn clone(&self) -> NonBodyFixedFrameError
fn clone(&self) -> NonBodyFixedFrameError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NonBodyFixedFrameError
impl Debug for NonBodyFixedFrameError
Source§impl Display for NonBodyFixedFrameError
impl Display for NonBodyFixedFrameError
Source§impl Error for NonBodyFixedFrameError
impl Error for NonBodyFixedFrameError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<NonBodyFixedFrameError> for UndefinedReferenceEllipsoidError
impl From<NonBodyFixedFrameError> for UndefinedReferenceEllipsoidError
Source§fn from(source: NonBodyFixedFrameError) -> Self
fn from(source: NonBodyFixedFrameError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NonBodyFixedFrameError
impl RefUnwindSafe for NonBodyFixedFrameError
impl Send for NonBodyFixedFrameError
impl Sync for NonBodyFixedFrameError
impl Unpin for NonBodyFixedFrameError
impl UnsafeUnpin for NonBodyFixedFrameError
impl UnwindSafe for NonBodyFixedFrameError
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, O, Tg, P> TryRotation<O, Tg, T> for Pwhere
T: ContinuousTimeScale + Copy,
O: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
Tg: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
impl<T, O, Tg, P> TryRotation<O, Tg, T> for Pwhere
T: ContinuousTimeScale + Copy,
O: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
Tg: ReferenceFrame + RotateToIcrf<T, P, Error = RotationError>,
Source§type Error = RotationError
type Error = RotationError
The error type returned when the rotation cannot be computed.
Source§fn try_rotation(
&self,
origin: O,
target: Tg,
time: Time<T>,
) -> Result<Rotation, <P as TryRotation<O, Tg, T>>::Error>
fn try_rotation( &self, origin: O, target: Tg, time: Time<T>, ) -> Result<Rotation, <P as TryRotation<O, Tg, T>>::Error>
Computes the rotation from
origin to target at the given time.