pub struct HermitVersion {
pub major: u32,
pub minor: u32,
pub patch: u32,
}
Expand description
A Hermit version.
Fields§
§major: u32
The major version of Hermit.
minor: u32
The minor version of Hermit.
patch: u32
The patch version of Hermit.
Trait Implementations§
Source§impl Clone for HermitVersion
impl Clone for HermitVersion
Source§fn clone(&self) -> HermitVersion
fn clone(&self) -> HermitVersion
Returns a copy 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 HermitVersion
impl Debug for HermitVersion
Source§impl Display for HermitVersion
impl Display for HermitVersion
Source§impl FromStr for HermitVersion
impl FromStr for HermitVersion
Source§impl Ord for HermitVersion
impl Ord for HermitVersion
Source§fn cmp(&self, other: &HermitVersion) -> Ordering
fn cmp(&self, other: &HermitVersion) -> 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 HermitVersion
impl PartialEq for HermitVersion
Source§impl PartialOrd for HermitVersion
impl PartialOrd for HermitVersion
impl Copy for HermitVersion
impl Eq for HermitVersion
impl StructuralPartialEq for HermitVersion
Auto Trait Implementations§
impl Freeze for HermitVersion
impl RefUnwindSafe for HermitVersion
impl Send for HermitVersion
impl Sync for HermitVersion
impl Unpin for HermitVersion
impl UnwindSafe for HermitVersion
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