pub struct GpuWorkOutput {
pub id: usize,
pub adapter_index: usize,
pub outputs: Vec<Vec<u8>>,
}Expand description
Output from one dispatched GpuWorkItem.
Fields§
§id: usizeWork identifier.
adapter_index: usizeAdapter index that executed the work.
outputs: Vec<Vec<u8>>Dispatch outputs.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GpuWorkOutput
impl RefUnwindSafe for GpuWorkOutput
impl Send for GpuWorkOutput
impl Sync for GpuWorkOutput
impl Unpin for GpuWorkOutput
impl UnsafeUnpin for GpuWorkOutput
impl UnwindSafe for GpuWorkOutput
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