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§
Source§impl 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§
Source§impl Clone for ResearchingQuantity
impl Clone for ResearchingQuantity
Source§fn clone(&self) -> ResearchingQuantity
fn clone(&self) -> ResearchingQuantity
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 ResearchingQuantity
impl Debug for ResearchingQuantity
Source§impl Default for ResearchingQuantity
impl Default for ResearchingQuantity
Source§fn default() -> ResearchingQuantity
fn default() -> ResearchingQuantity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResearchingQuantity
impl<'de> Deserialize<'de> for ResearchingQuantity
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 ResearchingQuantity
impl PartialEq for ResearchingQuantity
Source§impl Serialize for ResearchingQuantity
impl Serialize for ResearchingQuantity
impl StructuralPartialEq for ResearchingQuantity
Auto Trait Implementations§
impl Freeze for ResearchingQuantity
impl RefUnwindSafe for ResearchingQuantity
impl Send for ResearchingQuantity
impl Sync for ResearchingQuantity
impl Unpin for ResearchingQuantity
impl UnwindSafe for ResearchingQuantity
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