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