pub struct ResearchingQuantity {
pub total_researching_quantity: Option<i32>,
pub researching_quantity_breakdown: Option<Vec<ResearchingQuantityEntry>>,
}Expand description
ResearchingQuantity : The number of misplaced or warehouse damaged units that are actively being confirmed at our fulfillment centers.
Fields
total_researching_quantity: Option<i32>The total number of units currently being researched in Amazon’s fulfillment network.
researching_quantity_breakdown: Option<Vec<ResearchingQuantityEntry>>A list of quantity details for items currently being researched.
Implementations
sourceimpl ResearchingQuantity
impl ResearchingQuantity
sourcepub fn new() -> ResearchingQuantity
pub fn new() -> ResearchingQuantity
The number of misplaced or warehouse damaged units that are actively being confirmed at our fulfillment centers.
Trait Implementations
sourceimpl Clone for ResearchingQuantity
impl Clone for ResearchingQuantity
sourcefn clone(&self) -> ResearchingQuantity
fn clone(&self) -> ResearchingQuantity
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 ResearchingQuantity
impl Debug for ResearchingQuantity
sourceimpl Default for ResearchingQuantity
impl Default for ResearchingQuantity
sourcefn default() -> ResearchingQuantity
fn default() -> ResearchingQuantity
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ResearchingQuantity
impl<'de> Deserialize<'de> for ResearchingQuantity
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<ResearchingQuantity> for ResearchingQuantity
impl PartialEq<ResearchingQuantity> for ResearchingQuantity
sourcefn eq(&self, other: &ResearchingQuantity) -> bool
fn eq(&self, other: &ResearchingQuantity) -> bool
sourceimpl Serialize for ResearchingQuantity
impl Serialize for ResearchingQuantity
impl StructuralPartialEq for ResearchingQuantity
Auto Trait Implementations
impl RefUnwindSafe for ResearchingQuantity
impl Send for ResearchingQuantity
impl Sync for ResearchingQuantity
impl Unpin for ResearchingQuantity
impl UnwindSafe for ResearchingQuantity
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