pub enum InputOutcome {
Accepted,
Rejected,
Uncertain,
Superseded,
}Expand description
Result reported by the transport adapter for one input request.
Variants§
Trait Implementations§
Source§impl Clone for InputOutcome
impl Clone for InputOutcome
Source§fn clone(&self) -> InputOutcome
fn clone(&self) -> InputOutcome
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 InputOutcome
Source§impl Debug for InputOutcome
impl Debug for InputOutcome
impl Eq for InputOutcome
Source§impl PartialEq for InputOutcome
impl PartialEq for InputOutcome
impl StructuralPartialEq for InputOutcome
Auto Trait Implementations§
impl Freeze for InputOutcome
impl RefUnwindSafe for InputOutcome
impl Send for InputOutcome
impl Sync for InputOutcome
impl Unpin for InputOutcome
impl UnsafeUnpin for InputOutcome
impl UnwindSafe for InputOutcome
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