pub enum GuidanceError {
NoThrustersDefined,
ThrottleRatio {
ratio: f64,
},
InvalidDirection {
x: f64,
y: f64,
z: f64,
in_plane_deg: f64,
out_of_plane_deg: f64,
},
InvalidRate {
x: f64,
y: f64,
z: f64,
in_plane_deg_s: f64,
out_of_plane_deg_s: f64,
},
InvalidAcceleration {
x: f64,
y: f64,
z: f64,
in_plane_deg_s2: f64,
out_of_plane_deg_s2: f64,
},
GuidancePhysicsError {
action: &'static str,
source: PhysicsError,
},
NoGuidanceObjectiveDefined,
InvalidControl {
param: StateParameter,
},
GuidState {
source: StateError,
},
}
Variants§
NoThrustersDefined
ThrottleRatio
InvalidDirection
InvalidRate
InvalidAcceleration
GuidancePhysicsError
NoGuidanceObjectiveDefined
InvalidControl
Fields
§
param: StateParameter
GuidState
Fields
§
source: StateError
Trait Implementations§
Source§impl Debug for GuidanceError
impl Debug for GuidanceError
Source§impl Display for GuidanceError
impl Display for GuidanceError
Source§impl Error for GuidanceError
impl Error for GuidanceError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§impl ErrorCompat for GuidanceError
impl ErrorCompat for GuidanceError
§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 PartialEq for GuidanceError
impl PartialEq for GuidanceError
impl StructuralPartialEq for GuidanceError
Auto Trait Implementations§
impl Freeze for GuidanceError
impl !RefUnwindSafe for GuidanceError
impl Send for GuidanceError
impl Sync for GuidanceError
impl Unpin for GuidanceError
impl !UnwindSafe for GuidanceError
Blanket Implementations§
§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere
T: Error + 'static,
§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<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§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 more§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).§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.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.