pub struct UserPersonalstatsForIdRequestBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> UserPersonalstatsForIdRequestBuilder<S>
impl<S: State> UserPersonalstatsForIdRequestBuilder<S>
Sourcepub fn build(self) -> UserPersonalstatsForIdRequestwhere
S: IsComplete,
pub fn build(self) -> UserPersonalstatsForIdRequestwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn cat(
self,
value: PersonalStatsCategoryEnum,
) -> UserPersonalstatsForIdRequestBuilder<SetCat<S>>where
S::Cat: IsUnset,
pub fn cat(
self,
value: PersonalStatsCategoryEnum,
) -> UserPersonalstatsForIdRequestBuilder<SetCat<S>>where
S::Cat: IsUnset,
Sourcepub fn maybe_cat(
self,
value: Option<PersonalStatsCategoryEnum>,
) -> UserPersonalstatsForIdRequestBuilder<SetCat<S>>where
S::Cat: IsUnset,
pub fn maybe_cat(
self,
value: Option<PersonalStatsCategoryEnum>,
) -> UserPersonalstatsForIdRequestBuilder<SetCat<S>>where
S::Cat: IsUnset,
Sourcepub fn stat(
self,
value: impl Into<Stat>,
) -> UserPersonalstatsForIdRequestBuilder<SetStat<S>>where
S::Stat: IsUnset,
pub fn stat(
self,
value: impl Into<Stat>,
) -> UserPersonalstatsForIdRequestBuilder<SetStat<S>>where
S::Stat: IsUnset,
Sourcepub fn maybe_stat(
self,
value: Option<impl Into<Stat>>,
) -> UserPersonalstatsForIdRequestBuilder<SetStat<S>>where
S::Stat: IsUnset,
pub fn maybe_stat(
self,
value: Option<impl Into<Stat>>,
) -> UserPersonalstatsForIdRequestBuilder<SetStat<S>>where
S::Stat: IsUnset,
Sourcepub fn timestamp(
self,
value: impl Into<Timestamp>,
) -> UserPersonalstatsForIdRequestBuilder<SetTimestamp<S>>where
S::Timestamp: IsUnset,
pub fn timestamp(
self,
value: impl Into<Timestamp>,
) -> UserPersonalstatsForIdRequestBuilder<SetTimestamp<S>>where
S::Timestamp: IsUnset,
Sourcepub fn maybe_timestamp(
self,
value: Option<impl Into<Timestamp>>,
) -> UserPersonalstatsForIdRequestBuilder<SetTimestamp<S>>where
S::Timestamp: IsUnset,
pub fn maybe_timestamp(
self,
value: Option<impl Into<Timestamp>>,
) -> UserPersonalstatsForIdRequestBuilder<SetTimestamp<S>>where
S::Timestamp: IsUnset,
Sourcepub fn api_comment(
self,
value: impl Into<String>,
) -> UserPersonalstatsForIdRequestBuilder<SetApiComment<S>>where
S::ApiComment: IsUnset,
pub fn api_comment(
self,
value: impl Into<String>,
) -> UserPersonalstatsForIdRequestBuilder<SetApiComment<S>>where
S::ApiComment: IsUnset,
Sourcepub fn maybe_api_comment(
self,
value: Option<impl Into<String>>,
) -> UserPersonalstatsForIdRequestBuilder<SetApiComment<S>>where
S::ApiComment: IsUnset,
pub fn maybe_api_comment(
self,
value: Option<impl Into<String>>,
) -> UserPersonalstatsForIdRequestBuilder<SetApiComment<S>>where
S::ApiComment: IsUnset,
Sourcepub fn api_key_public(
self,
value: impl Into<String>,
) -> UserPersonalstatsForIdRequestBuilder<SetApiKeyPublic<S>>where
S::ApiKeyPublic: IsUnset,
pub fn api_key_public(
self,
value: impl Into<String>,
) -> UserPersonalstatsForIdRequestBuilder<SetApiKeyPublic<S>>where
S::ApiKeyPublic: IsUnset,
Sourcepub fn maybe_api_key_public(
self,
value: Option<impl Into<String>>,
) -> UserPersonalstatsForIdRequestBuilder<SetApiKeyPublic<S>>where
S::ApiKeyPublic: IsUnset,
pub fn maybe_api_key_public(
self,
value: Option<impl Into<String>>,
) -> UserPersonalstatsForIdRequestBuilder<SetApiKeyPublic<S>>where
S::ApiKeyPublic: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for UserPersonalstatsForIdRequestBuilder<S>
impl<S> RefUnwindSafe for UserPersonalstatsForIdRequestBuilder<S>
impl<S> Send for UserPersonalstatsForIdRequestBuilder<S>
impl<S> Sync for UserPersonalstatsForIdRequestBuilder<S>
impl<S> Unpin for UserPersonalstatsForIdRequestBuilder<S>
impl<S> UnwindSafe for UserPersonalstatsForIdRequestBuilder<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