struct PendingJob {
resource_id: u32,
timestamp: u64,
resource: GuestResourceHandle,
offset: usize,
bytes_used: usize,
remaining: usize,
}Expand description
Represents a buffer we have not yet sent to the accelerator.
Fields§
§resource_id: u32§timestamp: u64§resource: GuestResourceHandle§offset: usize§bytes_used: usize§remaining: usizeAuto Trait Implementations§
impl Freeze for PendingJob
impl RefUnwindSafe for PendingJob
impl Send for PendingJob
impl Sync for PendingJob
impl Unpin for PendingJob
impl UnwindSafe for PendingJob
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