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