pub struct VgpuSchedulerLogEntry {
pub timestamp: u64,
pub time_run_total: u64,
pub time_run: u64,
pub sw_runlist_id: u32,
pub target_time_slice: u64,
pub cumulative_preemption_time: u64,
}Expand description
Vgpu scheduler Log entry
Fields§
§timestamp: u64Timesteamp when the software runlist was preemopted (in ns)
time_run_total: u64Total time this runlist has run (in ns)
time_run: u64Time this runlist ran before preemption (in ns)
sw_runlist_id: u32Runlist Id
target_time_slice: u64timeslice after deduction
cumulative_preemption_time: u64Preemption time for this runlist (in ns)
Trait Implementations§
Source§impl Clone for VgpuSchedulerLogEntry
impl Clone for VgpuSchedulerLogEntry
Source§fn clone(&self) -> VgpuSchedulerLogEntry
fn clone(&self) -> VgpuSchedulerLogEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 VgpuSchedulerLogEntry
impl Debug for VgpuSchedulerLogEntry
Source§impl From<nvmlVgpuSchedulerLogEntries_st> for VgpuSchedulerLogEntry
impl From<nvmlVgpuSchedulerLogEntries_st> for VgpuSchedulerLogEntry
Source§fn from(value: nvmlVgpuSchedulerLogEntry_t) -> Self
fn from(value: nvmlVgpuSchedulerLogEntry_t) -> Self
Converts to this type from the input type.
Source§impl PartialEq for VgpuSchedulerLogEntry
impl PartialEq for VgpuSchedulerLogEntry
impl Eq for VgpuSchedulerLogEntry
impl StructuralPartialEq for VgpuSchedulerLogEntry
Auto Trait Implementations§
impl Freeze for VgpuSchedulerLogEntry
impl RefUnwindSafe for VgpuSchedulerLogEntry
impl Send for VgpuSchedulerLogEntry
impl Sync for VgpuSchedulerLogEntry
impl Unpin for VgpuSchedulerLogEntry
impl UnwindSafe for VgpuSchedulerLogEntry
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