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