pub struct GnuplotVersion {
pub major: i32,
pub minor: i32,
}
Expand description
Gnuplot version identifier. This is used to handle version-specific features.
Fields§
§major: i32
§minor: i32
Trait Implementations§
Source§impl Clone for GnuplotVersion
impl Clone for GnuplotVersion
Source§fn clone(&self) -> GnuplotVersion
fn clone(&self) -> GnuplotVersion
Returns a copy 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 GnuplotVersion
impl Debug for GnuplotVersion
Source§impl Default for GnuplotVersion
impl Default for GnuplotVersion
Source§fn default() -> GnuplotVersion
fn default() -> GnuplotVersion
Returns the “default value” for a type. Read more
Source§impl Ord for GnuplotVersion
impl Ord for GnuplotVersion
Source§fn cmp(&self, other: &GnuplotVersion) -> Ordering
fn cmp(&self, other: &GnuplotVersion) -> 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 GnuplotVersion
impl PartialEq for GnuplotVersion
Source§impl PartialOrd for GnuplotVersion
impl PartialOrd for GnuplotVersion
impl Copy for GnuplotVersion
impl Eq for GnuplotVersion
impl StructuralPartialEq for GnuplotVersion
Auto Trait Implementations§
impl Freeze for GnuplotVersion
impl RefUnwindSafe for GnuplotVersion
impl Send for GnuplotVersion
impl Sync for GnuplotVersion
impl Unpin for GnuplotVersion
impl UnwindSafe for GnuplotVersion
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