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