pub struct RetrieveInventoryCountParams {
pub location_ids: Option<Vec<String>>,
pub cursor: Option<String>,
}
Fields
location_ids: Option<Vec<String>>
cursor: Option<String>
The pagination cursor returned in the previous response. Leave unset for an initial request. The page size is currently set to be 100. See Pagination for more information.
Implementations
sourceimpl RetrieveInventoryCountParams
impl RetrieveInventoryCountParams
pub fn to_query_string(&self) -> String
Trait Implementations
sourceimpl Clone for RetrieveInventoryCountParams
impl Clone for RetrieveInventoryCountParams
sourcefn clone(&self) -> RetrieveInventoryCountParams
fn clone(&self) -> RetrieveInventoryCountParams
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 RetrieveInventoryCountParams
impl Debug for RetrieveInventoryCountParams
sourceimpl Default for RetrieveInventoryCountParams
impl Default for RetrieveInventoryCountParams
sourcefn default() -> RetrieveInventoryCountParams
fn default() -> RetrieveInventoryCountParams
Returns the “default value” for a type. Read more
sourceimpl From<RetrieveInventoryCountParams> for String
impl From<RetrieveInventoryCountParams> for String
sourcefn from(
retrieve_inventory_count_parameters: RetrieveInventoryCountParams
) -> Self
fn from(
retrieve_inventory_count_parameters: RetrieveInventoryCountParams
) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for RetrieveInventoryCountParams
impl Send for RetrieveInventoryCountParams
impl Sync for RetrieveInventoryCountParams
impl Unpin for RetrieveInventoryCountParams
impl UnwindSafe for RetrieveInventoryCountParams
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