pub struct MarketBazaarRequest {
pub cat: Option<MarketSpecializedBazaarCategoryEnum>,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_public: Option<String>,
}Fields§
§cat: Option<MarketSpecializedBazaarCategoryEnum>§api_timestamp: Option<String>§api_comment: Option<String>§api_key_public: Option<String>Implementations§
Source§impl MarketBazaarRequest
impl MarketBazaarRequest
Sourcepub fn builder() -> MarketBazaarRequestBuilder
pub fn builder() -> MarketBazaarRequestBuilder
Create an instance of MarketBazaarRequest using the builder syntax
Trait Implementations§
Source§impl Clone for MarketBazaarRequest
impl Clone for MarketBazaarRequest
Source§fn clone(&self) -> MarketBazaarRequest
fn clone(&self) -> MarketBazaarRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MarketBazaarRequest
impl Debug for MarketBazaarRequest
Source§impl IntoRequest for MarketBazaarRequest
impl IntoRequest for MarketBazaarRequest
Source§type Discriminant = ()
type Discriminant = ()
If used in bulk request, the discriminant is used to distinguish the responses. For
endpoints which have no path parameters this will be
().Source§type Response = BazaarResponse
type Response = BazaarResponse
The response type which shall be deserialised.
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for MarketBazaarRequest
impl RefUnwindSafe for MarketBazaarRequest
impl Send for MarketBazaarRequest
impl Sync for MarketBazaarRequest
impl Unpin for MarketBazaarRequest
impl UnsafeUnpin for MarketBazaarRequest
impl UnwindSafe for MarketBazaarRequest
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