pub struct RuntimeReceipt<T> {
pub result: T,
pub events: Vec<KernelEvent>,
}Fields§
§result: T§events: Vec<KernelEvent>Trait Implementations§
Source§impl<T: Clone> Clone for RuntimeReceipt<T>
impl<T: Clone> Clone for RuntimeReceipt<T>
Source§fn clone(&self) -> RuntimeReceipt<T>
fn clone(&self) -> RuntimeReceipt<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 moreSource§impl<T: Debug> Debug for RuntimeReceipt<T>
impl<T: Debug> Debug for RuntimeReceipt<T>
Source§impl<T: PartialEq> PartialEq for RuntimeReceipt<T>
impl<T: PartialEq> PartialEq for RuntimeReceipt<T>
impl<T: PartialEq> StructuralPartialEq for RuntimeReceipt<T>
Auto Trait Implementations§
impl<T> Freeze for RuntimeReceipt<T>where
T: Freeze,
impl<T> RefUnwindSafe for RuntimeReceipt<T>where
T: RefUnwindSafe,
impl<T> Send for RuntimeReceipt<T>where
T: Send,
impl<T> Sync for RuntimeReceipt<T>where
T: Sync,
impl<T> Unpin for RuntimeReceipt<T>where
T: Unpin,
impl<T> UnsafeUnpin for RuntimeReceipt<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for RuntimeReceipt<T>where
T: UnwindSafe,
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