pub enum OrbitState {
Bound,
Escape,
Transfer,
Decaying,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for OrbitState
impl Clone for OrbitState
Source§fn clone(&self) -> OrbitState
fn clone(&self) -> OrbitState
Returns a duplicate of the value. Read more
1.0.0 · 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 OrbitState
impl Debug for OrbitState
Source§impl Display for OrbitState
impl Display for OrbitState
Source§impl FromStr for OrbitState
impl FromStr for OrbitState
Source§impl Hash for OrbitState
impl Hash for OrbitState
Source§impl Ord for OrbitState
impl Ord for OrbitState
Source§fn cmp(&self, other: &OrbitState) -> Ordering
fn cmp(&self, other: &OrbitState) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OrbitState
impl PartialEq for OrbitState
Source§impl PartialOrd for OrbitState
impl PartialOrd for OrbitState
impl Eq for OrbitState
impl StructuralPartialEq for OrbitState
Auto Trait Implementations§
impl Freeze for OrbitState
impl RefUnwindSafe for OrbitState
impl Send for OrbitState
impl Sync for OrbitState
impl Unpin for OrbitState
impl UnsafeUnpin for OrbitState
impl UnwindSafe for OrbitState
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