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