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