Enum nvml_wrapper::enums::device::PcieLinkMaxSpeed
source · [−]pub enum PcieLinkMaxSpeed {
Invalid,
MegabytesPerSecond2500,
MegabytesPerSecond5000,
MegabytesPerSecond8000,
MegabytesPerSecond16000,
MegabytesPerSecond32000,
}Expand description
Returned by crate::Device::pcie_link_max_speed().
Note, the NVML header says these are all MBPS (Megabytes Per Second) but they don’t line up with the throughput numbers on this page: https://en.wikipedia.org/wiki/PCI_Express
They do line up with the “transfer rate per lane” numbers, though.
Variants
Invalid
MegabytesPerSecond2500
MegabytesPerSecond5000
MegabytesPerSecond8000
MegabytesPerSecond16000
MegabytesPerSecond32000
Implementations
Trait Implementations
sourceimpl Clone for PcieLinkMaxSpeed
impl Clone for PcieLinkMaxSpeed
sourcefn clone(&self) -> PcieLinkMaxSpeed
fn clone(&self) -> PcieLinkMaxSpeed
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 PcieLinkMaxSpeed
impl Debug for PcieLinkMaxSpeed
sourceimpl Hash for PcieLinkMaxSpeed
impl Hash for PcieLinkMaxSpeed
sourceimpl PartialEq<PcieLinkMaxSpeed> for PcieLinkMaxSpeed
impl PartialEq<PcieLinkMaxSpeed> for PcieLinkMaxSpeed
sourceimpl TryFrom<u32> for PcieLinkMaxSpeed
impl TryFrom<u32> for PcieLinkMaxSpeed
impl Eq for PcieLinkMaxSpeed
impl StructuralEq for PcieLinkMaxSpeed
impl StructuralPartialEq for PcieLinkMaxSpeed
Auto Trait Implementations
impl RefUnwindSafe for PcieLinkMaxSpeed
impl Send for PcieLinkMaxSpeed
impl Sync for PcieLinkMaxSpeed
impl Unpin for PcieLinkMaxSpeed
impl UnwindSafe for PcieLinkMaxSpeed
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more