pub struct RacingRequest {
pub selections: Option<Selections>,
pub id: Option<Id>,
pub api_limit: Option<ApiLimit>,
pub api_sort: Option<ApiSort>,
pub api_to: Option<ApiTo>,
pub api_from: Option<ApiFrom>,
pub cat: Option<Cat>,
pub api_offset_no_default: Option<ApiOffsetNoDefault>,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_public: Option<String>,
}
Fields§
§selections: Option<Selections>
§id: Option<Id>
§api_limit: Option<ApiLimit>
§api_sort: Option<ApiSort>
§api_to: Option<ApiTo>
§api_from: Option<ApiFrom>
§cat: Option<Cat>
§api_offset_no_default: Option<ApiOffsetNoDefault>
§api_timestamp: Option<String>
§api_comment: Option<String>
§api_key_public: Option<String>
Implementations§
Source§impl RacingRequest
impl RacingRequest
Sourcepub fn builder() -> RacingRequestBuilder
pub fn builder() -> RacingRequestBuilder
Create an instance of RacingRequest
using the builder syntax
Trait Implementations§
Source§impl Clone for RacingRequest
impl Clone for RacingRequest
Source§fn clone(&self) -> RacingRequest
fn clone(&self) -> RacingRequest
Returns a copy of the value. Read more
1.0.0 · 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 RacingRequest
impl Debug for RacingRequest
Source§impl IntoRequest for RacingRequest
impl IntoRequest for RacingRequest
type Discriminant = ()
type Response = Response
fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for RacingRequest
impl RefUnwindSafe for RacingRequest
impl Send for RacingRequest
impl Sync for RacingRequest
impl Unpin for RacingRequest
impl UnwindSafe for RacingRequest
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