pub struct Version {
pub major: usize,
pub minor: usize,
pub patch: String,
}
Expand description
Structure representing a gnuplot version number.
Fields§
§major: usize
The major version number
minor: usize
The minor version number
patch: String
The patch level
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