Struct amazon_sp_merchant_fulfillment::models::rejected_shipping_service::RejectedShippingService
source · [−]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. e.g. USPS
shipping_service_name: StringThe rejected shipping service localized name. e.g. FedEx Standard Overnight
shipping_service_id: StringAn Amazon-defined shipping service identifier.
rejection_reason_code: StringA reason code meant to be consumed programatically. e.g. CARRIER_CANNOT_SHIP_TO_POBOX
rejection_reason_message: Option<String>A localized human readable description of the rejected reason.
Implementations
Trait Implementations
sourceimpl Clone for RejectedShippingService
impl Clone for RejectedShippingService
sourcefn clone(&self) -> RejectedShippingService
fn clone(&self) -> RejectedShippingService
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RejectedShippingService
impl Debug for RejectedShippingService
sourceimpl Default for RejectedShippingService
impl Default for RejectedShippingService
sourcefn default() -> RejectedShippingService
fn default() -> RejectedShippingService
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for RejectedShippingService
impl<'de> Deserialize<'de> for RejectedShippingService
sourcefn 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
sourceimpl PartialEq<RejectedShippingService> for RejectedShippingService
impl PartialEq<RejectedShippingService> for RejectedShippingService
sourcefn eq(&self, other: &RejectedShippingService) -> bool
fn eq(&self, other: &RejectedShippingService) -> bool
sourceimpl Serialize for RejectedShippingService
impl Serialize for RejectedShippingService
impl StructuralPartialEq for RejectedShippingService
Auto Trait Implementations
impl RefUnwindSafe for RejectedShippingService
impl Send for RejectedShippingService
impl Sync for RejectedShippingService
impl Unpin for RejectedShippingService
impl UnwindSafe for RejectedShippingService
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more