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