pub struct ImagingServicesFeeEvent {
pub imaging_request_billing_item_id: Option<String>,
pub ASIN: Option<String>,
pub posted_date: Option<String>,
pub fee_list: Option<Vec<FeeComponent>>,
}Expand description
ImagingServicesFeeEvent : A fee event related to Amazon Imaging services.
Fields
imaging_request_billing_item_id: Option<String>The identifier for the imaging services request.
ASIN: Option<String>The Amazon Standard Identification Number (ASIN) of the item for which the imaging service was requested.
posted_date: Option<String>fee_list: Option<Vec<FeeComponent>>A list of fee component information.
Implementations
sourceimpl ImagingServicesFeeEvent
impl ImagingServicesFeeEvent
sourcepub fn new() -> ImagingServicesFeeEvent
pub fn new() -> ImagingServicesFeeEvent
A fee event related to Amazon Imaging services.
Trait Implementations
sourceimpl Clone for ImagingServicesFeeEvent
impl Clone for ImagingServicesFeeEvent
sourcefn clone(&self) -> ImagingServicesFeeEvent
fn clone(&self) -> ImagingServicesFeeEvent
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 ImagingServicesFeeEvent
impl Debug for ImagingServicesFeeEvent
sourceimpl Default for ImagingServicesFeeEvent
impl Default for ImagingServicesFeeEvent
sourcefn default() -> ImagingServicesFeeEvent
fn default() -> ImagingServicesFeeEvent
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ImagingServicesFeeEvent
impl<'de> Deserialize<'de> for ImagingServicesFeeEvent
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<ImagingServicesFeeEvent> for ImagingServicesFeeEvent
impl PartialEq<ImagingServicesFeeEvent> for ImagingServicesFeeEvent
sourcefn eq(&self, other: &ImagingServicesFeeEvent) -> bool
fn eq(&self, other: &ImagingServicesFeeEvent) -> bool
sourceimpl Serialize for ImagingServicesFeeEvent
impl Serialize for ImagingServicesFeeEvent
impl StructuralPartialEq for ImagingServicesFeeEvent
Auto Trait Implementations
impl RefUnwindSafe for ImagingServicesFeeEvent
impl Send for ImagingServicesFeeEvent
impl Sync for ImagingServicesFeeEvent
impl Unpin for ImagingServicesFeeEvent
impl UnwindSafe for ImagingServicesFeeEvent
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