pub struct PickupServicesPickupService {
pub carrier_name: Option<String>,
pub country: Option<String>,
pub service_name: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§carrier_name: Option<String>The name of the carrier (e.g., "UPS"). Always present.
country: Option<String>The CLDR country code of the carrier (e.g., “US”). Always present.
service_name: Option<String>The name of the pickup service (e.g., "Access point"). Always present.
Trait Implementations§
Source§impl Clone for PickupServicesPickupService
impl Clone for PickupServicesPickupService
Source§fn clone(&self) -> PickupServicesPickupService
fn clone(&self) -> PickupServicesPickupService
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 PickupServicesPickupService
impl Debug for PickupServicesPickupService
Source§impl Default for PickupServicesPickupService
impl Default for PickupServicesPickupService
Source§fn default() -> PickupServicesPickupService
fn default() -> PickupServicesPickupService
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PickupServicesPickupService
impl<'de> Deserialize<'de> for PickupServicesPickupService
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
impl Part for PickupServicesPickupService
Auto Trait Implementations§
impl Freeze for PickupServicesPickupService
impl RefUnwindSafe for PickupServicesPickupService
impl Send for PickupServicesPickupService
impl Sync for PickupServicesPickupService
impl Unpin for PickupServicesPickupService
impl UnwindSafe for PickupServicesPickupService
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