pub struct StripeQuote {
pub expires_at: f64,
}Expand description
A refreshed quote.
JSON schema
{
"title": "StripeQuote",
"description": "A refreshed quote.",
"type": "object",
"required": [
"expires_at"
],
"properties": {
"expires_at": {
"type": "number"
}
},
"x-stainless-model": "onramps.stripe_quote"
}Fields§
§expires_at: f64Trait Implementations§
Source§impl Clone for StripeQuote
impl Clone for StripeQuote
Source§fn clone(&self) -> StripeQuote
fn clone(&self) -> StripeQuote
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 moreSource§impl Debug for StripeQuote
impl Debug for StripeQuote
Source§impl<'de> Deserialize<'de> for StripeQuote
impl<'de> Deserialize<'de> for StripeQuote
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 From<&StripeQuote> for StripeQuote
impl From<&StripeQuote> for StripeQuote
Source§fn from(value: &StripeQuote) -> Self
fn from(value: &StripeQuote) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StripeQuote
impl RefUnwindSafe for StripeQuote
impl Send for StripeQuote
impl Sync for StripeQuote
impl Unpin for StripeQuote
impl UnsafeUnpin for StripeQuote
impl UnwindSafe for StripeQuote
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