pub struct DeliveryPrice {
pub category: String,
pub next_page_cursor: Option<String>,
pub list: Vec<DeliveryPriceEntry>,
}Expand description
Response for Client::get_delivery_price.
Fields§
§category: String§next_page_cursor: Option<String>§list: Vec<DeliveryPriceEntry>Trait Implementations§
Source§impl Debug for DeliveryPrice
impl Debug for DeliveryPrice
Source§impl<'de> Deserialize<'de> for DeliveryPrice
impl<'de> Deserialize<'de> for DeliveryPrice
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 PartialEq for DeliveryPrice
impl PartialEq for DeliveryPrice
Source§fn eq(&self, other: &DeliveryPrice) -> bool
fn eq(&self, other: &DeliveryPrice) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeliveryPrice
Auto Trait Implementations§
impl Freeze for DeliveryPrice
impl RefUnwindSafe for DeliveryPrice
impl Send for DeliveryPrice
impl Sync for DeliveryPrice
impl Unpin for DeliveryPrice
impl UnsafeUnpin for DeliveryPrice
impl UnwindSafe for DeliveryPrice
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