Enum async_memcached::Status
source · pub enum Status {
Stored,
NotStored,
Deleted,
Touched,
Exists,
NotFound,
Error(ErrorKind),
}
Expand description
Status of a memcached operation.
Variants§
Stored
The value was stored.
NotStored
The value was not stored.
Deleted
The key was deleted.
Touched
The key was touched.
Exists
The key already exists.
NotFound
The key was not found.
Error(ErrorKind)
An error occurred for the given operation.
Trait Implementations§
source§impl From<MetadumpResponse> for Status
impl From<MetadumpResponse> for Status
source§fn from(resp: MetadumpResponse) -> Self
fn from(resp: MetadumpResponse) -> Self
Converts to this type from the input type.
source§impl PartialEq<Status> for Status
impl PartialEq<Status> 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§
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