pub enum GetObjectMetadataError {
Status404(),
Status401(ErrorMessage),
UnknownValue(Value),
}Expand description
struct for typed errors of method get_object_metadata
Variants§
Trait Implementations§
Source§impl Clone for GetObjectMetadataError
impl Clone for GetObjectMetadataError
Source§fn clone(&self) -> GetObjectMetadataError
fn clone(&self) -> GetObjectMetadataError
Returns a duplicate 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 GetObjectMetadataError
impl Debug for GetObjectMetadataError
Source§impl<'de> Deserialize<'de> for GetObjectMetadataError
impl<'de> Deserialize<'de> for GetObjectMetadataError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetObjectMetadataError
impl RefUnwindSafe for GetObjectMetadataError
impl Send for GetObjectMetadataError
impl Sync for GetObjectMetadataError
impl Unpin for GetObjectMetadataError
impl UnwindSafe for GetObjectMetadataError
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