Struct mailchimp_api::types::Carts
source · pub struct Carts {
pub links: Vec<Links>,
pub campaign_id: String,
pub checkout_url: String,
pub created_at: Option<DateTime<Utc>>,
pub currency_code: String,
pub customer: Option<Customer>,
pub id: String,
pub lines: Vec<ECommerceCartLineItem>,
pub order_total: f64,
pub tax_total: f64,
pub updated_at: Option<DateTime<Utc>>,
}
Expand description
Information about a specific cart.
Fields
links: Vec<Links>
Information about a specific cart.
campaign_id: String
Information about a specific cart.
checkout_url: String
Information about a specific cart.
created_at: Option<DateTime<Utc>>
Information about a specific cart.
currency_code: String
Information about a specific cart.
customer: Option<Customer>
Information about a specific cart.
id: String
Information about a specific cart.
lines: Vec<ECommerceCartLineItem>
Information about a specific cart.
order_total: f64
Information about a specific cart.
tax_total: f64
Information about a specific cart.
updated_at: Option<DateTime<Utc>>
Information about a specific cart.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Carts
impl<'de> Deserialize<'de> for Carts
sourcefn 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
sourceimpl JsonSchema for Carts
impl JsonSchema for Carts
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreimpl StructuralPartialEq for Carts
Auto Trait Implementations
impl RefUnwindSafe for Carts
impl Send for Carts
impl Sync for Carts
impl Unpin for Carts
impl UnwindSafe for Carts
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more