pub struct DeliveryRecordResponse {
pub category: String,
pub list: Vec<DeliveryRecordItem>,
pub next_page_cursor: String,
}Expand description
Delivery record response
Fields§
§category: StringProduct type
list: Vec<DeliveryRecordItem>List of delivery records
next_page_cursor: StringNext page cursor
Trait Implementations§
Source§impl Clone for DeliveryRecordResponse
impl Clone for DeliveryRecordResponse
Source§fn clone(&self) -> DeliveryRecordResponse
fn clone(&self) -> DeliveryRecordResponse
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 DeliveryRecordResponse
impl Debug for DeliveryRecordResponse
Source§impl<'de> Deserialize<'de> for DeliveryRecordResponse
impl<'de> Deserialize<'de> for DeliveryRecordResponse
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
Auto Trait Implementations§
impl Freeze for DeliveryRecordResponse
impl RefUnwindSafe for DeliveryRecordResponse
impl Send for DeliveryRecordResponse
impl Sync for DeliveryRecordResponse
impl Unpin for DeliveryRecordResponse
impl UnsafeUnpin for DeliveryRecordResponse
impl UnwindSafe for DeliveryRecordResponse
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