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§
Source§impl RetrieveInventoryCountParams
impl RetrieveInventoryCountParams
pub fn to_query_string(&self) -> String
Trait Implementations§
Source§impl Clone for RetrieveInventoryCountParams
impl Clone for RetrieveInventoryCountParams
Source§fn clone(&self) -> RetrieveInventoryCountParams
fn clone(&self) -> RetrieveInventoryCountParams
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RetrieveInventoryCountParams
impl Debug for RetrieveInventoryCountParams
Source§impl Default for RetrieveInventoryCountParams
impl Default for RetrieveInventoryCountParams
Source§fn default() -> RetrieveInventoryCountParams
fn default() -> RetrieveInventoryCountParams
Returns the “default value” for a type. Read more
Source§impl From<RetrieveInventoryCountParams> for String
impl From<RetrieveInventoryCountParams> for String
Source§fn 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 Freeze for RetrieveInventoryCountParams
impl RefUnwindSafe for RetrieveInventoryCountParams
impl Send for RetrieveInventoryCountParams
impl Sync for RetrieveInventoryCountParams
impl Unpin for RetrieveInventoryCountParams
impl UnwindSafe for RetrieveInventoryCountParams
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