pub enum RawOutcome {
Ok(RawValue),
Error(String),
}Expand description
A RAW handler execution result. Ok carries a RawValue (native-backed), NOT a boxed
Value — that is the whole de-box.
Variants§
Trait Implementations§
Source§impl Clone for RawOutcome
impl Clone for RawOutcome
Source§fn clone(&self) -> RawOutcome
fn clone(&self) -> RawOutcome
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 Freeze for RawOutcome
impl RefUnwindSafe for RawOutcome
impl Send for RawOutcome
impl Sync for RawOutcome
impl Unpin for RawOutcome
impl UnsafeUnpin for RawOutcome
impl UnwindSafe for RawOutcome
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