pub struct DeliveryPricesResponse {
pub data: Vec<DeliveryPriceData>,
pub records_total: u32,
}Expand description
Delivery prices response
Fields§
§data: Vec<DeliveryPriceData>List of delivery price data
records_total: u32Total number of records
Trait Implementations§
Source§impl Clone for DeliveryPricesResponse
impl Clone for DeliveryPricesResponse
Source§fn clone(&self) -> DeliveryPricesResponse
fn clone(&self) -> DeliveryPricesResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 DeliveryPricesResponse
impl Debug for DeliveryPricesResponse
Source§impl<'de> Deserialize<'de> for DeliveryPricesResponse
impl<'de> Deserialize<'de> for DeliveryPricesResponse
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 DeliveryPricesResponse
impl Display for DeliveryPricesResponse
Auto Trait Implementations§
impl Freeze for DeliveryPricesResponse
impl RefUnwindSafe for DeliveryPricesResponse
impl Send for DeliveryPricesResponse
impl Sync for DeliveryPricesResponse
impl Unpin for DeliveryPricesResponse
impl UnwindSafe for DeliveryPricesResponse
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