pub struct ReturnTransfer<V> {
pub values: Vec<V>,
pub widths: Vec<usize>,
}Expand description
Guest-neutral return data carrying width-accounted values to a continuation.
Fields§
§values: Vec<V>Values leaving the current activation.
widths: Vec<usize>Logical storage width corresponding one-for-one with values.
Implementations§
Source§impl<V> ReturnTransfer<V>
impl<V> ReturnTransfer<V>
Trait Implementations§
Source§impl<V: Clone> Clone for ReturnTransfer<V>
impl<V: Clone> Clone for ReturnTransfer<V>
Source§fn clone(&self) -> ReturnTransfer<V>
fn clone(&self) -> ReturnTransfer<V>
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<V: Debug> Debug for ReturnTransfer<V>
impl<V: Debug> Debug for ReturnTransfer<V>
impl<V: Eq> Eq for ReturnTransfer<V>
Source§impl<V: PartialEq> PartialEq for ReturnTransfer<V>
impl<V: PartialEq> PartialEq for ReturnTransfer<V>
impl<V: PartialEq> StructuralPartialEq for ReturnTransfer<V>
Auto Trait Implementations§
impl<V> Freeze for ReturnTransfer<V>
impl<V> RefUnwindSafe for ReturnTransfer<V>where
V: RefUnwindSafe,
impl<V> Send for ReturnTransfer<V>where
V: Send,
impl<V> Sync for ReturnTransfer<V>where
V: Sync,
impl<V> Unpin for ReturnTransfer<V>where
V: Unpin,
impl<V> UnsafeUnpin for ReturnTransfer<V>
impl<V> UnwindSafe for ReturnTransfer<V>where
V: 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