pub struct GpuEventSummary {
pub vendor: String,
pub visible_devices: String,
pub driver_capabilities: String,
pub bind_driver_libraries: bool,
pub relaxed_seccomp_ioctl: bool,
}Expand description
GPU passthrough summary emitted in the container started/summary events.
Fields§
§vendor: String§visible_devices: String§driver_capabilities: String§bind_driver_libraries: bool§relaxed_seccomp_ioctl: boolWhether the seccomp ioctl filter was relaxed for GPU driver ioctls.
Trait Implementations§
Source§impl Clone for GpuEventSummary
impl Clone for GpuEventSummary
Source§fn clone(&self) -> GpuEventSummary
fn clone(&self) -> GpuEventSummary
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 GpuEventSummary
impl Debug for GpuEventSummary
Auto Trait Implementations§
impl Freeze for GpuEventSummary
impl RefUnwindSafe for GpuEventSummary
impl Send for GpuEventSummary
impl Sync for GpuEventSummary
impl Unpin for GpuEventSummary
impl UnsafeUnpin for GpuEventSummary
impl UnwindSafe for GpuEventSummary
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