pub enum GetUsageSummaryError {
APIErrorResponse(APIErrorResponse),
UnknownValue(Value),
}
Expand description
GetUsageSummaryError is a struct for typed errors of method UsageMeteringAPI::get_usage_summary
Variants§
APIErrorResponse(APIErrorResponse)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for GetUsageSummaryError
impl Clone for GetUsageSummaryError
Source§fn clone(&self) -> GetUsageSummaryError
fn clone(&self) -> GetUsageSummaryError
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 GetUsageSummaryError
impl Debug for GetUsageSummaryError
Source§impl<'de> Deserialize<'de> for GetUsageSummaryError
impl<'de> Deserialize<'de> for GetUsageSummaryError
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 GetUsageSummaryError
impl RefUnwindSafe for GetUsageSummaryError
impl Send for GetUsageSummaryError
impl Sync for GetUsageSummaryError
impl Unpin for GetUsageSummaryError
impl UnwindSafe for GetUsageSummaryError
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