pub enum JsonInvocationOutcome {
Success(Value),
DomainError(Value),
}Expand description
Exact host outcome returned by a byte-oriented Plugin invocation.
Variants§
Success(Value)
Successful generated response value.
DomainError(Value)
Declared generated Domain Error value.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JsonInvocationOutcome
impl RefUnwindSafe for JsonInvocationOutcome
impl Send for JsonInvocationOutcome
impl Sync for JsonInvocationOutcome
impl Unpin for JsonInvocationOutcome
impl UnsafeUnpin for JsonInvocationOutcome
impl UnwindSafe for JsonInvocationOutcome
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