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