pub struct GpuInstanceProfileInfo {
pub id: u32,
pub slice_count: u32,
pub instance_count: u32,
pub multiprocessor_count: u32,
pub copy_engine_count: u32,
pub decoder_count: u32,
pub encoder_count: u32,
pub jpeg_count: u32,
pub ofa_count: u32,
pub memory_size_mb: u64,
pub name: String,
pub capabilities: GpuInstanceProfileCapabilities,
}Fields§
§id: u32§slice_count: u32§instance_count: u32§multiprocessor_count: u32§copy_engine_count: u32§decoder_count: u32§encoder_count: u32§jpeg_count: u32§ofa_count: u32§memory_size_mb: u64§name: String§capabilities: GpuInstanceProfileCapabilitiesTrait Implementations§
Source§impl Clone for GpuInstanceProfileInfo
impl Clone for GpuInstanceProfileInfo
Source§fn clone(&self) -> GpuInstanceProfileInfo
fn clone(&self) -> GpuInstanceProfileInfo
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 moreSource§impl Debug for GpuInstanceProfileInfo
impl Debug for GpuInstanceProfileInfo
Source§impl From<nvmlGpuInstanceProfileInfo_v3_st> for GpuInstanceProfileInfo
impl From<nvmlGpuInstanceProfileInfo_v3_st> for GpuInstanceProfileInfo
Source§fn from(value: nvmlGpuInstanceProfileInfo_v3_t) -> Self
fn from(value: nvmlGpuInstanceProfileInfo_v3_t) -> Self
Converts to this type from the input type.
Source§impl Hash for GpuInstanceProfileInfo
impl Hash for GpuInstanceProfileInfo
Source§impl PartialEq for GpuInstanceProfileInfo
impl PartialEq for GpuInstanceProfileInfo
Source§fn eq(&self, other: &GpuInstanceProfileInfo) -> bool
fn eq(&self, other: &GpuInstanceProfileInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for GpuInstanceProfileInfo
impl StructuralPartialEq for GpuInstanceProfileInfo
Auto Trait Implementations§
impl Freeze for GpuInstanceProfileInfo
impl RefUnwindSafe for GpuInstanceProfileInfo
impl Send for GpuInstanceProfileInfo
impl Sync for GpuInstanceProfileInfo
impl Unpin for GpuInstanceProfileInfo
impl UnsafeUnpin for GpuInstanceProfileInfo
impl UnwindSafe for GpuInstanceProfileInfo
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