Enum nvml_wrapper::enum_wrappers::device::BridgeChip
source · [−]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
PLX
BRO4
Implementations
sourceimpl 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
sourceimpl Clone for BridgeChip
impl Clone for BridgeChip
sourcefn clone(&self) -> BridgeChip
fn clone(&self) -> BridgeChip
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 BridgeChip
impl Debug for BridgeChip
sourceimpl Hash for BridgeChip
impl Hash for BridgeChip
sourceimpl PartialEq<BridgeChip> for BridgeChip
impl PartialEq<BridgeChip> for BridgeChip
sourceimpl TryFrom<u32> for BridgeChip
impl TryFrom<u32> for BridgeChip
impl Eq for BridgeChip
impl StructuralEq for BridgeChip
impl StructuralPartialEq for BridgeChip
Auto Trait Implementations
impl RefUnwindSafe for BridgeChip
impl Send for BridgeChip
impl Sync for BridgeChip
impl Unpin for BridgeChip
impl UnwindSafe for BridgeChip
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