pub enum AstroVersionFamily {
Astro2,
Astro3,
Astro4,
Astro5,
}Expand description
Astro version-family labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AstroVersionFamily
impl Clone for AstroVersionFamily
Source§fn clone(&self) -> AstroVersionFamily
fn clone(&self) -> AstroVersionFamily
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 AstroVersionFamily
impl Debug for AstroVersionFamily
Source§impl Display for AstroVersionFamily
impl Display for AstroVersionFamily
Source§impl FromStr for AstroVersionFamily
impl FromStr for AstroVersionFamily
Source§type Err = AstroTextError
type Err = AstroTextError
The associated error which can be returned from parsing.
Source§fn from_str(
input: &str,
) -> Result<AstroVersionFamily, <AstroVersionFamily as FromStr>::Err>
fn from_str( input: &str, ) -> Result<AstroVersionFamily, <AstroVersionFamily as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for AstroVersionFamily
impl Hash for AstroVersionFamily
Source§impl Ord for AstroVersionFamily
impl Ord for AstroVersionFamily
Source§fn cmp(&self, other: &AstroVersionFamily) -> Ordering
fn cmp(&self, other: &AstroVersionFamily) -> Ordering
1.21.0 (const: unstable) · 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 AstroVersionFamily
impl PartialEq for AstroVersionFamily
Source§fn eq(&self, other: &AstroVersionFamily) -> bool
fn eq(&self, other: &AstroVersionFamily) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AstroVersionFamily
impl PartialOrd for AstroVersionFamily
impl Copy for AstroVersionFamily
impl Eq for AstroVersionFamily
impl StructuralPartialEq for AstroVersionFamily
Auto Trait Implementations§
impl Freeze for AstroVersionFamily
impl RefUnwindSafe for AstroVersionFamily
impl Send for AstroVersionFamily
impl Sync for AstroVersionFamily
impl Unpin for AstroVersionFamily
impl UnsafeUnpin for AstroVersionFamily
impl UnwindSafe for AstroVersionFamily
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