pub struct InvalidAsin {
pub ASIN: Option<String>,
pub error_reason: Option<ErrorReason>,
}Fields
ASIN: Option<String>The Amazon Standard Identification Number (ASIN) of the item.
error_reason: Option<ErrorReason>Implementations
sourceimpl InvalidAsin
impl InvalidAsin
pub fn new() -> InvalidAsin
Trait Implementations
sourceimpl Clone for InvalidAsin
impl Clone for InvalidAsin
sourcefn clone(&self) -> InvalidAsin
fn clone(&self) -> InvalidAsin
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 InvalidAsin
impl Debug for InvalidAsin
sourceimpl Default for InvalidAsin
impl Default for InvalidAsin
sourcefn default() -> InvalidAsin
fn default() -> InvalidAsin
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for InvalidAsin
impl<'de> Deserialize<'de> for InvalidAsin
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<InvalidAsin> for InvalidAsin
impl PartialEq<InvalidAsin> for InvalidAsin
sourcefn eq(&self, other: &InvalidAsin) -> bool
fn eq(&self, other: &InvalidAsin) -> bool
sourceimpl Serialize for InvalidAsin
impl Serialize for InvalidAsin
impl StructuralPartialEq for InvalidAsin
Auto Trait Implementations
impl RefUnwindSafe for InvalidAsin
impl Send for InvalidAsin
impl Sync for InvalidAsin
impl Unpin for InvalidAsin
impl UnwindSafe for InvalidAsin
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