pub struct RejectedShippingService {
pub carrier_name: String,
pub shipping_service_name: String,
pub shipping_service_id: String,
pub rejection_reason_code: String,
pub rejection_reason_message: Option<String>,
}Expand description
RejectedShippingService : Information about a rejected shipping service
Fields§
§carrier_name: StringThe rejected shipping carrier name. For example, USPS.
shipping_service_name: StringThe rejected shipping service localized name. For example, FedEx Standard Overnight.
shipping_service_id: StringAn Amazon-defined shipping service identifier.
rejection_reason_code: StringA reason code meant to be consumed programatically. For example, CARRIER_CANNOT_SHIP_TO_POBOX.
rejection_reason_message: Option<String>A localized human readable description of the rejected reason.
Implementations§
Trait Implementations§
Source§impl Clone for RejectedShippingService
impl Clone for RejectedShippingService
Source§fn clone(&self) -> RejectedShippingService
fn clone(&self) -> RejectedShippingService
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 RejectedShippingService
impl Debug for RejectedShippingService
Source§impl Default for RejectedShippingService
impl Default for RejectedShippingService
Source§fn default() -> RejectedShippingService
fn default() -> RejectedShippingService
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RejectedShippingService
impl<'de> Deserialize<'de> for RejectedShippingService
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 RejectedShippingService
impl PartialEq for RejectedShippingService
Source§impl Serialize for RejectedShippingService
impl Serialize for RejectedShippingService
impl StructuralPartialEq for RejectedShippingService
Auto Trait Implementations§
impl Freeze for RejectedShippingService
impl RefUnwindSafe for RejectedShippingService
impl Send for RejectedShippingService
impl Sync for RejectedShippingService
impl Unpin for RejectedShippingService
impl UnwindSafe for RejectedShippingService
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