pub struct RacingRacesRequest {
pub api_limit100: Option<ApiLimit100>,
pub api_sort_desc: Option<ApiSortDesc>,
pub api_to: Option<ApiTo>,
pub api_from: Option<ApiFrom>,
pub cat: Option<RacingRaceTypeEnum>,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_public: Option<String>,
}Fields§
§api_limit100: Option<ApiLimit100>§api_sort_desc: Option<ApiSortDesc>§api_to: Option<ApiTo>§api_from: Option<ApiFrom>§cat: Option<RacingRaceTypeEnum>§api_timestamp: Option<String>§api_comment: Option<String>§api_key_public: Option<String>Implementations§
Source§impl RacingRacesRequest
impl RacingRacesRequest
Sourcepub fn builder() -> RacingRacesRequestBuilder
pub fn builder() -> RacingRacesRequestBuilder
Create an instance of RacingRacesRequest using the builder syntax
Trait Implementations§
Source§impl Clone for RacingRacesRequest
impl Clone for RacingRacesRequest
Source§fn clone(&self) -> RacingRacesRequest
fn clone(&self) -> RacingRacesRequest
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 RacingRacesRequest
impl Debug for RacingRacesRequest
Source§impl IntoRequest for RacingRacesRequest
impl IntoRequest for RacingRacesRequest
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 = RacingRacesResponse
type Response = RacingRacesResponse
The response type which shall be deserialised.
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for RacingRacesRequest
impl RefUnwindSafe for RacingRacesRequest
impl Send for RacingRacesRequest
impl Sync for RacingRacesRequest
impl Unpin for RacingRacesRequest
impl UnsafeUnpin for RacingRacesRequest
impl UnwindSafe for RacingRacesRequest
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