pub struct Version {
pub mark: char,
pub major: u8,
pub minor: u8,
pub fixation: u8,
}Expand description
Version information structure.
Contains version components including a character mark and numeric version parts.
Fields§
§mark: charVersion mark character
major: u8Major version number
minor: u8Minor version number
fixation: u8Fixation version number
Implementations§
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