pub struct MarketBazaarForIdRequest {
pub id: ItemId,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_public: Option<String>,
}Fields§
§id: ItemId§api_timestamp: Option<String>§api_comment: Option<String>§api_key_public: Option<String>Implementations§
Source§impl MarketBazaarForIdRequest
impl MarketBazaarForIdRequest
Sourcepub fn builder(id: ItemId) -> MarketBazaarForIdRequestBuilder
pub fn builder(id: ItemId) -> MarketBazaarForIdRequestBuilder
Create an instance of MarketBazaarForIdRequest using the builder syntax
Trait Implementations§
Source§impl Clone for MarketBazaarForIdRequest
impl Clone for MarketBazaarForIdRequest
Source§fn clone(&self) -> MarketBazaarForIdRequest
fn clone(&self) -> MarketBazaarForIdRequest
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 MarketBazaarForIdRequest
impl Debug for MarketBazaarForIdRequest
Source§impl IntoRequest for MarketBazaarForIdRequest
impl IntoRequest for MarketBazaarForIdRequest
Source§type Discriminant = ItemId
type Discriminant = ItemId
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 = BazaarResponseSpecialized
type Response = BazaarResponseSpecialized
The response type which shall be deserialised.
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for MarketBazaarForIdRequest
impl RefUnwindSafe for MarketBazaarForIdRequest
impl Send for MarketBazaarForIdRequest
impl Sync for MarketBazaarForIdRequest
impl Unpin for MarketBazaarForIdRequest
impl UnsafeUnpin for MarketBazaarForIdRequest
impl UnwindSafe for MarketBazaarForIdRequest
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