pub struct Version {
pub major: u8,
pub minor: u8,
pub patch: u8,
}Expand description
Version struct returned by MiMalloc::get_version.
Fields§
§major: u8The major version.
minor: u8The minor version.
patch: u8The patch version.
Trait Implementations§
impl Copy for Version
Auto Trait Implementations§
impl Freeze for Version
impl RefUnwindSafe for Version
impl Send for Version
impl Sync for Version
impl Unpin for Version
impl UnwindSafe for 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