Struct jyve::request::store_chains_list::StoreChainsListRequest
source · pub struct StoreChainsListRequest<'a> {
pub class_of_trade: Option<String>,
pub created_at: Option<String>,
pub deleted: Option<String>,
pub name: Option<String>,
pub page: Option<i64>,
pub page_size: Option<i64>,
pub parent_company: Option<String>,
pub store_locations_jobs_brand_public_id: Option<String>,
pub updated_at: Option<String>,
/* private fields */
}
Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§class_of_trade: Option<String>
§created_at: Option<String>
§deleted: Option<String>
§name: Option<String>
§page: Option<i64>
§page_size: Option<i64>
§parent_company: Option<String>
§store_locations_jobs_brand_public_id: Option<String>
§updated_at: Option<String>
Implementations§
source§impl<'a> StoreChainsListRequest<'a>
impl<'a> StoreChainsListRequest<'a>
pub async fn send(self) -> InMemoryResult<Vec<StoreChain>>
pub fn class_of_trade(self, class_of_trade: &str) -> Self
pub fn created_at(self, created_at: &str) -> Self
pub fn deleted(self, deleted: &str) -> Self
pub fn name(self, name: &str) -> Self
pub fn page(self, page: i64) -> Self
pub fn page_size(self, page_size: i64) -> Self
pub fn parent_company(self, parent_company: &str) -> Self
pub fn store_locations_jobs_brand_public_id( self, store_locations_jobs_brand_public_id: &str ) -> Self
pub fn updated_at(self, updated_at: &str) -> Self
Trait Implementations§
source§impl<'a> Clone for StoreChainsListRequest<'a>
impl<'a> Clone for StoreChainsListRequest<'a>
source§fn clone(&self) -> StoreChainsListRequest<'a>
fn clone(&self) -> StoreChainsListRequest<'a>
Returns a copy 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<'a> IntoFuture for StoreChainsListRequest<'a>
impl<'a> IntoFuture for StoreChainsListRequest<'a>
§type Output = Result<Vec<StoreChain, Global>, Error<Response<InMemoryBody>>>
type Output = Result<Vec<StoreChain, Global>, Error<Response<InMemoryBody>>>
The output that the future will produce on completion.
§type IntoFuture = Pin<Box<dyn Future<Output = <StoreChainsListRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = <StoreChainsListRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
Which kind of future are we turning this into?
source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for StoreChainsListRequest<'a>
impl<'a> Send for StoreChainsListRequest<'a>
impl<'a> Sync for StoreChainsListRequest<'a>
impl<'a> Unpin for StoreChainsListRequest<'a>
impl<'a> !UnwindSafe for StoreChainsListRequest<'a>
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