pub struct StripeErrorObject {
pub error: StripeRequestObject,
}
Fields§
§error: StripeRequestObject
Trait Implementations§
Source§impl Debug for StripeErrorObject
impl Debug for StripeErrorObject
Source§impl Default for StripeErrorObject
impl Default for StripeErrorObject
Source§fn default() -> StripeErrorObject
fn default() -> StripeErrorObject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StripeErrorObject
impl<'de> Deserialize<'de> for StripeErrorObject
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
Source§impl Display for StripeErrorObject
impl Display for StripeErrorObject
Source§impl From<StripeErrorObject> for Error
impl From<StripeErrorObject> for Error
Source§fn from(f: StripeErrorObject) -> Error
fn from(f: StripeErrorObject) -> Error
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StripeErrorObject
impl RefUnwindSafe for StripeErrorObject
impl Send for StripeErrorObject
impl Sync for StripeErrorObject
impl Unpin for StripeErrorObject
impl UnwindSafe for StripeErrorObject
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more