Struct intel_mkl_sys::MKLVersion
source · [−]#[repr(C)]pub struct MKLVersion {
pub MajorVersion: c_int,
pub MinorVersion: c_int,
pub UpdateVersion: c_int,
pub ProductStatus: *mut c_char,
pub Build: *mut c_char,
pub Processor: *mut c_char,
pub Platform: *mut c_char,
}
Fields
MajorVersion: c_int
MinorVersion: c_int
UpdateVersion: c_int
ProductStatus: *mut c_char
Build: *mut c_char
Processor: *mut c_char
Platform: *mut c_char
Trait Implementations
sourceimpl Clone for MKLVersion
impl Clone for MKLVersion
sourcefn clone(&self) -> MKLVersion
fn clone(&self) -> MKLVersion
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MKLVersion
impl Debug for MKLVersion
sourceimpl Default for MKLVersion
impl Default for MKLVersion
sourceimpl Hash for MKLVersion
impl Hash for MKLVersion
sourceimpl Ord for MKLVersion
impl Ord for MKLVersion
sourceimpl PartialEq<MKLVersion> for MKLVersion
impl PartialEq<MKLVersion> for MKLVersion
sourcefn eq(&self, other: &MKLVersion) -> bool
fn eq(&self, other: &MKLVersion) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MKLVersion) -> bool
fn ne(&self, other: &MKLVersion) -> bool
This method tests for !=
.
sourceimpl PartialOrd<MKLVersion> for MKLVersion
impl PartialOrd<MKLVersion> for MKLVersion
sourcefn partial_cmp(&self, other: &MKLVersion) -> Option<Ordering>
fn partial_cmp(&self, other: &MKLVersion) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for MKLVersion
impl Eq for MKLVersion
impl StructuralEq for MKLVersion
impl StructuralPartialEq for MKLVersion
Auto Trait Implementations
impl RefUnwindSafe for MKLVersion
impl !Send for MKLVersion
impl !Sync for MKLVersion
impl Unpin for MKLVersion
impl UnwindSafe for MKLVersion
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more