pub enum Vary {
Show 25 variants
PositionX,
PositionY,
PositionZ,
VelocityX,
VelocityY,
VelocityZ,
MnvrAlpha,
MnvrAlphaDot,
MnvrAlphaDDot,
MnvrDelta,
MnvrDeltaDot,
MnvrDeltaDDot,
StartEpoch,
Duration,
EndEpoch,
ThrustX,
ThrustY,
ThrustZ,
ThrustLevel,
ThrustRateX,
ThrustRateY,
ThrustRateZ,
ThrustAccelX,
ThrustAccelY,
ThrustAccelZ,
}
Expand description
Defines the kind of correction to apply in the targeter
Variants§
PositionX
Vary position component X
PositionY
Vary position component Y
PositionZ
Vary position component Z
VelocityX
Vary velocity component X
VelocityY
Vary velocity component Y
VelocityZ
Vary velocity component Z
MnvrAlpha
Maneuver’s in-plane alpha
MnvrAlphaDot
Maneuver’s in-plane alpha-dot
MnvrAlphaDDot
Maneuver’s in-plane alpha double-dot
MnvrDelta
Maneuver’s out-of-plane beta
MnvrDeltaDot
Maneuver’s out-of-plane beta dot
MnvrDeltaDDot
Maneuver’s out-of-plane beta double-dot
StartEpoch
Start epoch difference in seconds
Duration
Burn duration difference in seconds
EndEpoch
End epoch difference in seconds
ThrustX
Thrust direction in X
ThrustY
Thrust direction in Y
ThrustZ
Thrust direction in Z
ThrustLevel
Thrust level during the burn.
ThrustRateX
Thrust direction rate in X
ThrustRateY
Thrust direction rate in Y
ThrustRateZ
Thrust direction rate in Z
ThrustAccelX
Thrust direction acceleration in X
ThrustAccelY
Thrust direction acceleration in Y
ThrustAccelZ
Thrust direction acceleration in Z
Implementations§
Trait Implementations§
impl Copy for Vary
impl Eq for Vary
impl StructuralPartialEq for Vary
Auto Trait Implementations§
impl Freeze for Vary
impl RefUnwindSafe for Vary
impl Send for Vary
impl Sync for Vary
impl Unpin for Vary
impl UnwindSafe for Vary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§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>
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>
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>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
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
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.