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