pub struct HsExtVersion {
pub major: u32,
pub minor: u32,
pub patch: u32,
pub pre: Option<String>,
}Expand description
A version tag for HsExt output artifacts.
Fields§
§major: u32§minor: u32§patch: u32§pre: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for HsExtVersion
impl Clone for HsExtVersion
Source§fn clone(&self) -> HsExtVersion
fn clone(&self) -> HsExtVersion
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 HsExtVersion
impl Debug for HsExtVersion
Source§impl Display for HsExtVersion
impl Display for HsExtVersion
Source§impl Hash for HsExtVersion
impl Hash for HsExtVersion
Source§impl Ord for HsExtVersion
impl Ord for HsExtVersion
Source§fn cmp(&self, other: &HsExtVersion) -> Ordering
fn cmp(&self, other: &HsExtVersion) -> 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 HsExtVersion
impl PartialEq for HsExtVersion
Source§impl PartialOrd for HsExtVersion
impl PartialOrd for HsExtVersion
impl Eq for HsExtVersion
impl StructuralPartialEq for HsExtVersion
Auto Trait Implementations§
impl Freeze for HsExtVersion
impl RefUnwindSafe for HsExtVersion
impl Send for HsExtVersion
impl Sync for HsExtVersion
impl Unpin for HsExtVersion
impl UnsafeUnpin for HsExtVersion
impl UnwindSafe for HsExtVersion
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