pub struct StripeResult {
pub ok: bool,
pub error_code: Option<String>,
pub error_message: Option<String>,
pub error_details: Option<Value>,
pub authenticated: bool,
pub data: Value,
}Fields§
§ok: bool§error_code: Option<String>§error_message: Option<String>§error_details: Option<Value>§authenticated: bool§data: ValueTrait Implementations§
Source§impl Clone for StripeResult
impl Clone for StripeResult
Source§fn clone(&self) -> StripeResult
fn clone(&self) -> StripeResult
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 moreAuto Trait Implementations§
impl Freeze for StripeResult
impl RefUnwindSafe for StripeResult
impl Send for StripeResult
impl Sync for StripeResult
impl Unpin for StripeResult
impl UnsafeUnpin for StripeResult
impl UnwindSafe for StripeResult
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