pub struct VgpuSchedulerLog {
pub engine_id: u32,
pub scheduler_policy: u32,
pub arr_mode: u32,
pub scheduler_params: VgpuSchedulerParams,
pub entries_count: u32,
pub entries: Vec<VgpuSchedulerLogEntry>,
}Expand description
Vgpu scheduler Log
Fields§
§engine_id: u32Engine id whose software runlist are fetched
scheduler_policy: u32Scheduler policy
arr_mode: u32Scheduler Round Robin Mode
scheduler_params: VgpuSchedulerParams§entries_count: u32Number of log entries fetched during the call
entries: Vec<VgpuSchedulerLogEntry>Log entries
Trait Implementations§
Source§impl Clone for VgpuSchedulerLog
impl Clone for VgpuSchedulerLog
Source§fn clone(&self) -> VgpuSchedulerLog
fn clone(&self) -> VgpuSchedulerLog
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 VgpuSchedulerLog
impl Debug for VgpuSchedulerLog
Source§impl From<nvmlVgpuSchedulerLog_st> for VgpuSchedulerLog
impl From<nvmlVgpuSchedulerLog_st> for VgpuSchedulerLog
Source§fn from(value: nvmlVgpuSchedulerLog_t) -> Self
fn from(value: nvmlVgpuSchedulerLog_t) -> Self
Converts to this type from the input type.
Source§impl PartialEq for VgpuSchedulerLog
impl PartialEq for VgpuSchedulerLog
impl Eq for VgpuSchedulerLog
impl StructuralPartialEq for VgpuSchedulerLog
Auto Trait Implementations§
impl Freeze for VgpuSchedulerLog
impl RefUnwindSafe for VgpuSchedulerLog
impl Send for VgpuSchedulerLog
impl Sync for VgpuSchedulerLog
impl Unpin for VgpuSchedulerLog
impl UnwindSafe for VgpuSchedulerLog
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