pub enum NativeCallResult {
Return(Value),
Yield(Value),
Stop(Value),
}Variants§
Trait Implementations§
Source§impl Clone for NativeCallResult
impl Clone for NativeCallResult
Source§fn clone(&self) -> NativeCallResult
fn clone(&self) -> NativeCallResult
Returns a duplicate of the value. Read more
1.0.0 · 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 NativeCallResult
impl Debug for NativeCallResult
Auto Trait Implementations§
impl Freeze for NativeCallResult
impl !RefUnwindSafe for NativeCallResult
impl !Send for NativeCallResult
impl !Sync for NativeCallResult
impl Unpin for NativeCallResult
impl UnsafeUnpin for NativeCallResult
impl !UnwindSafe for NativeCallResult
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