pub enum MetadumpResponse {
Busy(String),
BadClass(String),
Entry(KeyMetadata),
End,
}
Expand description
Metadump response.
Variants§
Busy(String)
The server is busy running another LRU crawler operation.
BadClass(String)
An invalid class ID was specified for the metadump.
Entry(KeyMetadata)
A single key entry within the overall metadump operation.
End
End of the metadump.
Trait Implementations§
Source§impl Clone for MetadumpResponse
impl Clone for MetadumpResponse
Source§fn clone(&self) -> MetadumpResponse
fn clone(&self) -> MetadumpResponse
Returns a copy of the value. Read more
1.0.0 · 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 MetadumpResponse
impl Debug for MetadumpResponse
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 for MetadumpResponse
impl PartialEq for MetadumpResponse
impl StructuralPartialEq for MetadumpResponse
Auto Trait Implementations§
impl Freeze for MetadumpResponse
impl RefUnwindSafe for MetadumpResponse
impl Send for MetadumpResponse
impl Sync for MetadumpResponse
impl Unpin for MetadumpResponse
impl UnwindSafe for MetadumpResponse
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