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