#[non_exhaustive]pub enum PhysicsError {
Show 20 variants
Unreachable,
EpochMismatch {
action: &'static str,
epoch1: Epoch,
epoch2: Epoch,
},
FrameMismatch {
action: &'static str,
frame1: FrameUid,
frame2: FrameUid,
},
InvalidRotation {
action: &'static str,
from1: i32,
to1: i32,
from2: i32,
to2: i32,
},
InvalidStateRotation {
from: i32,
to: i32,
state_frame: FrameUid,
},
DCMMissingDerivative {
action: &'static str,
},
MissingFrameData {
action: &'static str,
data: &'static str,
frame: FrameUid,
},
ParabolicEccentricity {
limit: f64,
},
ParabolicSemiParam {
p_km: f64,
},
HyperbolicTrueAnomaly {
ta_deg: f64,
},
NotHyperbolic {
ecc: f64,
},
Hyperbolic {
ecc: f64,
},
MeanElement {
detail: &'static str,
},
InfiniteValue {
action: &'static str,
},
AppliedMath {
source: MathError,
},
RadiusError {
action: &'static str,
},
VelocityError {
action: &'static str,
},
AberrationError {
action: &'static str,
},
NoCovariance {
action: &'static str,
},
PartialsNotYetDefined,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unreachable
Somehow you’ve entered code that should not be reachable, please file a bug.
EpochMismatch
FrameMismatch
InvalidRotation
InvalidStateRotation
DCMMissingDerivative
MissingFrameData
ParabolicEccentricity
ParabolicSemiParam
HyperbolicTrueAnomaly
NotHyperbolic
Hyperbolic
MeanElement
InfiniteValue
AppliedMath
RadiusError
VelocityError
AberrationError
NoCovariance
PartialsNotYetDefined
Trait Implementations§
Source§impl Clone for PhysicsError
impl Clone for PhysicsError
Source§fn clone(&self) -> PhysicsError
fn clone(&self) -> PhysicsError
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 moreimpl Copy for PhysicsError
Source§impl Debug for PhysicsError
impl Debug for PhysicsError
Source§impl Display for PhysicsError
impl Display for PhysicsError
Source§impl Error for PhysicsError
impl Error for PhysicsError
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 ErrorCompat for PhysicsError
impl ErrorCompat for PhysicsError
Source§fn iter_chain(&self) -> ChainCompat<'_, '_>where
Self: AsErrorSource,
fn iter_chain(&self) -> ChainCompat<'_, '_>where
Self: AsErrorSource,
Returns an iterator for traversing the chain of errors,
starting with the current error
and continuing with recursive calls to
Error::source. Read moreSource§impl From<PhysicsError> for PyErr
Available on crate feature python only.
impl From<PhysicsError> for PyErr
Available on crate feature
python only.Source§fn from(err: PhysicsError) -> PyErr
fn from(err: PhysicsError) -> PyErr
Converts to this type from the input type.
Source§impl PartialEq for PhysicsError
impl PartialEq for PhysicsError
Source§fn eq(&self, other: &PhysicsError) -> bool
fn eq(&self, other: &PhysicsError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PhysicsError
Auto Trait Implementations§
impl Freeze for PhysicsError
impl RefUnwindSafe for PhysicsError
impl Send for PhysicsError
impl Sync for PhysicsError
impl Unpin for PhysicsError
impl UnsafeUnpin for PhysicsError
impl UnwindSafe for PhysicsError
Blanket Implementations§
Source§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere
T: Error + 'static,
Source§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
impl<T> Scalar for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.