pub enum RejectionKind {
InvalidArguments,
Refused,
Incomplete,
}Expand description
Why an operation stopped after delivering its detailed diagnostics to its sink. This carries library semantics; applications decide how to report the outcome.
Variants§
Trait Implementations§
Source§impl Clone for RejectionKind
impl Clone for RejectionKind
Source§fn clone(&self) -> RejectionKind
fn clone(&self) -> RejectionKind
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 RejectionKind
Source§impl Debug for RejectionKind
impl Debug for RejectionKind
impl Eq for RejectionKind
Source§impl PartialEq for RejectionKind
impl PartialEq for RejectionKind
impl StructuralPartialEq for RejectionKind
Auto Trait Implementations§
impl Freeze for RejectionKind
impl RefUnwindSafe for RejectionKind
impl Send for RejectionKind
impl Sync for RejectionKind
impl Unpin for RejectionKind
impl UnsafeUnpin for RejectionKind
impl UnwindSafe for RejectionKind
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