pub enum CreateFastlyAccountError {
APIErrorResponse(APIErrorResponse),
UnknownValue(Value),
}
Expand description
CreateFastlyAccountError is a struct for typed errors of method FastlyIntegrationAPI::create_fastly_account
Variants§
APIErrorResponse(APIErrorResponse)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for CreateFastlyAccountError
impl Clone for CreateFastlyAccountError
Source§fn clone(&self) -> CreateFastlyAccountError
fn clone(&self) -> CreateFastlyAccountError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreateFastlyAccountError
impl Debug for CreateFastlyAccountError
Source§impl<'de> Deserialize<'de> for CreateFastlyAccountError
impl<'de> Deserialize<'de> for CreateFastlyAccountError
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 CreateFastlyAccountError
impl RefUnwindSafe for CreateFastlyAccountError
impl Send for CreateFastlyAccountError
impl Sync for CreateFastlyAccountError
impl Unpin for CreateFastlyAccountError
impl UnwindSafe for CreateFastlyAccountError
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