#[repr(C, packed(1))]pub struct _LEAP_VERSION {
pub major: i32,
pub minor: i32,
pub patch: i32,
}Expand description
\ingroup Structs Version information.
The members can be converted to a version string using the format:
major.minor.patch.build
@since 5.2.0
Fields§
§major: i32The major version. @since 5.2.0
minor: i32The minor version. @since 5.2.0
patch: i32The patch version. @since 5.2.0
Trait Implementations§
Source§impl Clone for _LEAP_VERSION
impl Clone for _LEAP_VERSION
Source§fn clone(&self) -> _LEAP_VERSION
fn clone(&self) -> _LEAP_VERSION
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 _LEAP_VERSION
impl Debug for _LEAP_VERSION
impl Copy for _LEAP_VERSION
Auto Trait Implementations§
impl Freeze for _LEAP_VERSION
impl RefUnwindSafe for _LEAP_VERSION
impl Send for _LEAP_VERSION
impl Sync for _LEAP_VERSION
impl Unpin for _LEAP_VERSION
impl UnwindSafe for _LEAP_VERSION
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