pub enum FnOutcome {
Ok {
value: Option<Value>,
},
Error {
code: String,
message: String,
},
RolledBack {
code: String,
message: String,
},
}Expand description
How the function completed.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FnOutcome
impl RefUnwindSafe for FnOutcome
impl Send for FnOutcome
impl Sync for FnOutcome
impl Unpin for FnOutcome
impl UnsafeUnpin for FnOutcome
impl UnwindSafe for FnOutcome
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