pub enum BridgeChip {
PLX,
BRO4,
}Expand description
Represents type of a bridge chip.
NVIDIA does not provide docs (in the code, that is) explaining what each chip type is, so you’re on your own there.
Variants§
Implementations§
Source§impl BridgeChip
impl BridgeChip
Sourcepub fn as_c(&self) -> nvmlBridgeChipType_enum
pub fn as_c(&self) -> nvmlBridgeChipType_enum
Returns the C enum variant equivalent for the given Rust enum variant
Trait Implementations§
Source§impl Clone for BridgeChip
impl Clone for BridgeChip
Source§fn clone(&self) -> BridgeChip
fn clone(&self) -> BridgeChip
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BridgeChip
Source§impl Debug for BridgeChip
impl Debug for BridgeChip
impl Eq for BridgeChip
Source§impl Hash for BridgeChip
impl Hash for BridgeChip
Source§impl PartialEq for BridgeChip
impl PartialEq for BridgeChip
Source§fn eq(&self, other: &BridgeChip) -> bool
fn eq(&self, other: &BridgeChip) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BridgeChip
Auto Trait Implementations§
impl Freeze for BridgeChip
impl RefUnwindSafe for BridgeChip
impl Send for BridgeChip
impl Sync for BridgeChip
impl Unpin for BridgeChip
impl UnsafeUnpin for BridgeChip
impl UnwindSafe for BridgeChip
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