#[repr(u16)]
pub enum Status {
Show 18 variants
NoError,
KeyNotFound,
KeyExists,
ValueTooLarge,
InvalidArguments,
ItemNotStored,
IncrDecrOnNonNumericValue,
VBucketBelongsToOtherServer,
AuthenticationError,
AuthenticationContinue,
UnknownCommand,
OutOfMemory,
NotSupported,
InternalError,
Busy,
TemporaryFailure,
AuthenticationRequired,
AuthenticationFurtherStepRequired,
}
Expand description
Memcached response status
Variants
NoError
KeyNotFound
KeyExists
ValueTooLarge
InvalidArguments
ItemNotStored
IncrDecrOnNonNumericValue
VBucketBelongsToOtherServer
AuthenticationError
AuthenticationContinue
UnknownCommand
OutOfMemory
NotSupported
InternalError
Busy
TemporaryFailure
AuthenticationRequired
AuthenticationFurtherStepRequired
Implementations
Trait Implementations
impl Copy for Status
impl Eq for Status
impl StructuralEq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more