pub struct BlobReadError {
pub key: String,
pub error: String,
}Expand description
One blob that could not be read during a scrub.
Fields§
§key: StringThe storage key.
error: StringWhy the read failed.
Trait Implementations§
Source§impl Clone for BlobReadError
impl Clone for BlobReadError
Source§fn clone(&self) -> BlobReadError
fn clone(&self) -> BlobReadError
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 BlobReadError
impl Debug for BlobReadError
Source§impl<'de> Deserialize<'de> for BlobReadError
impl<'de> Deserialize<'de> for BlobReadError
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BlobReadError, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BlobReadError, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for BlobReadError
Source§impl PartialEq for BlobReadError
impl PartialEq for BlobReadError
Source§impl Serialize for BlobReadError
impl Serialize for BlobReadError
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for BlobReadError
Auto Trait Implementations§
impl Freeze for BlobReadError
impl RefUnwindSafe for BlobReadError
impl Send for BlobReadError
impl Sync for BlobReadError
impl Unpin for BlobReadError
impl UnsafeUnpin for BlobReadError
impl UnwindSafe for BlobReadError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.