pub enum BusinessOutcome {
Success,
Failure,
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for BusinessOutcome
impl Clone for BusinessOutcome
Source§fn clone(&self) -> BusinessOutcome
fn clone(&self) -> BusinessOutcome
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 moreimpl Copy for BusinessOutcome
Auto Trait Implementations§
impl Freeze for BusinessOutcome
impl RefUnwindSafe for BusinessOutcome
impl Send for BusinessOutcome
impl Sync for BusinessOutcome
impl Unpin for BusinessOutcome
impl UnsafeUnpin for BusinessOutcome
impl UnwindSafe for BusinessOutcome
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