pub struct RacingRecordsForTrackIdRequestBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> RacingRecordsForTrackIdRequestBuilder<S>
impl<S: State> RacingRecordsForTrackIdRequestBuilder<S>
Sourcepub fn build(self) -> RacingRecordsForTrackIdRequestwhere
S: IsComplete,
pub fn build(self) -> RacingRecordsForTrackIdRequestwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn cat(
self,
value: RaceClassEnum,
) -> RacingRecordsForTrackIdRequestBuilder<SetCat<S>>where
S::Cat: IsUnset,
pub fn cat(
self,
value: RaceClassEnum,
) -> RacingRecordsForTrackIdRequestBuilder<SetCat<S>>where
S::Cat: IsUnset,
Required.
Sourcepub fn api_timestamp(
self,
value: impl Into<String>,
) -> RacingRecordsForTrackIdRequestBuilder<SetApiTimestamp<S>>where
S::ApiTimestamp: IsUnset,
pub fn api_timestamp(
self,
value: impl Into<String>,
) -> RacingRecordsForTrackIdRequestBuilder<SetApiTimestamp<S>>where
S::ApiTimestamp: IsUnset,
Sourcepub fn maybe_api_timestamp(
self,
value: Option<impl Into<String>>,
) -> RacingRecordsForTrackIdRequestBuilder<SetApiTimestamp<S>>where
S::ApiTimestamp: IsUnset,
pub fn maybe_api_timestamp(
self,
value: Option<impl Into<String>>,
) -> RacingRecordsForTrackIdRequestBuilder<SetApiTimestamp<S>>where
S::ApiTimestamp: IsUnset,
Sourcepub fn api_comment(
self,
value: impl Into<String>,
) -> RacingRecordsForTrackIdRequestBuilder<SetApiComment<S>>where
S::ApiComment: IsUnset,
pub fn api_comment(
self,
value: impl Into<String>,
) -> RacingRecordsForTrackIdRequestBuilder<SetApiComment<S>>where
S::ApiComment: IsUnset,
Sourcepub fn maybe_api_comment(
self,
value: Option<impl Into<String>>,
) -> RacingRecordsForTrackIdRequestBuilder<SetApiComment<S>>where
S::ApiComment: IsUnset,
pub fn maybe_api_comment(
self,
value: Option<impl Into<String>>,
) -> RacingRecordsForTrackIdRequestBuilder<SetApiComment<S>>where
S::ApiComment: IsUnset,
Sourcepub fn api_key_public(
self,
value: impl Into<String>,
) -> RacingRecordsForTrackIdRequestBuilder<SetApiKeyPublic<S>>where
S::ApiKeyPublic: IsUnset,
pub fn api_key_public(
self,
value: impl Into<String>,
) -> RacingRecordsForTrackIdRequestBuilder<SetApiKeyPublic<S>>where
S::ApiKeyPublic: IsUnset,
Sourcepub fn maybe_api_key_public(
self,
value: Option<impl Into<String>>,
) -> RacingRecordsForTrackIdRequestBuilder<SetApiKeyPublic<S>>where
S::ApiKeyPublic: IsUnset,
pub fn maybe_api_key_public(
self,
value: Option<impl Into<String>>,
) -> RacingRecordsForTrackIdRequestBuilder<SetApiKeyPublic<S>>where
S::ApiKeyPublic: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for RacingRecordsForTrackIdRequestBuilder<S>
impl<S> RefUnwindSafe for RacingRecordsForTrackIdRequestBuilder<S>
impl<S> Send for RacingRecordsForTrackIdRequestBuilder<S>
impl<S> Sync for RacingRecordsForTrackIdRequestBuilder<S>
impl<S> Unpin for RacingRecordsForTrackIdRequestBuilder<S>
impl<S> UnwindSafe for RacingRecordsForTrackIdRequestBuilder<S>
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