pub enum AcceptedStatus {
Success(Bytes),
ProgramUnavailable,
ProgramMismatch(VersionRange),
ProcedureUnavailable,
GarbageArgs,
SystemError,
}Variants§
Trait Implementations§
Source§impl Clone for AcceptedStatus
impl Clone for AcceptedStatus
Source§fn clone(&self) -> AcceptedStatus
fn clone(&self) -> AcceptedStatus
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 moreSource§impl Debug for AcceptedStatus
impl Debug for AcceptedStatus
impl Eq for AcceptedStatus
Source§impl PartialEq for AcceptedStatus
impl PartialEq for AcceptedStatus
Source§fn eq(&self, other: &AcceptedStatus) -> bool
fn eq(&self, other: &AcceptedStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AcceptedStatus
Auto Trait Implementations§
impl !Freeze for AcceptedStatus
impl RefUnwindSafe for AcceptedStatus
impl Send for AcceptedStatus
impl Sync for AcceptedStatus
impl Unpin for AcceptedStatus
impl UnsafeUnpin for AcceptedStatus
impl UnwindSafe for AcceptedStatus
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