pub struct PluginTaskReceipt<T> {
pub output: T,
pub events: Vec<PluginOwned<PluginRuntimeEvent>>,
pub queued_batches: Vec<QueuedWorkBatch>,
}Fields§
§output: T§events: Vec<PluginOwned<PluginRuntimeEvent>>§queued_batches: Vec<QueuedWorkBatch>Trait Implementations§
Source§impl<T: Clone> Clone for PluginTaskReceipt<T>
impl<T: Clone> Clone for PluginTaskReceipt<T>
Source§fn clone(&self) -> PluginTaskReceipt<T>
fn clone(&self) -> PluginTaskReceipt<T>
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 moreAuto Trait Implementations§
impl<T> !RefUnwindSafe for PluginTaskReceipt<T>
impl<T> !UnwindSafe for PluginTaskReceipt<T>
impl<T> Freeze for PluginTaskReceipt<T>where
T: Freeze,
impl<T> Send for PluginTaskReceipt<T>where
T: Send,
impl<T> Sync for PluginTaskReceipt<T>where
T: Sync,
impl<T> Unpin for PluginTaskReceipt<T>where
T: Unpin,
impl<T> UnsafeUnpin for PluginTaskReceipt<T>where
T: UnsafeUnpin,
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