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