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