pub struct MegakernelDispatchOutput {
pub buffers: Vec<Vec<u8>>,
pub stats: MegakernelDispatchStats,
}Expand description
Backend outputs paired with host-side dispatch instrumentation.
Fields§
§buffers: Vec<Vec<u8>>Backend output buffers.
stats: MegakernelDispatchStatsHost-side dispatch instrumentation.
Trait Implementations§
Source§impl Clone for MegakernelDispatchOutput
impl Clone for MegakernelDispatchOutput
Source§fn clone(&self) -> MegakernelDispatchOutput
fn clone(&self) -> MegakernelDispatchOutput
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 MegakernelDispatchOutput
impl Debug for MegakernelDispatchOutput
Source§impl PartialEq for MegakernelDispatchOutput
impl PartialEq for MegakernelDispatchOutput
Source§fn eq(&self, other: &MegakernelDispatchOutput) -> bool
fn eq(&self, other: &MegakernelDispatchOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MegakernelDispatchOutput
impl StructuralPartialEq for MegakernelDispatchOutput
Auto Trait Implementations§
impl Freeze for MegakernelDispatchOutput
impl RefUnwindSafe for MegakernelDispatchOutput
impl Send for MegakernelDispatchOutput
impl Sync for MegakernelDispatchOutput
impl Unpin for MegakernelDispatchOutput
impl UnsafeUnpin for MegakernelDispatchOutput
impl UnwindSafe for MegakernelDispatchOutput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.