pub struct FactionRevivesRequestBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> FactionRevivesRequestBuilder<S>
impl<S: State> FactionRevivesRequestBuilder<S>
Sourcepub fn build(self) -> FactionRevivesRequestwhere
S: IsComplete,
pub fn build(self) -> FactionRevivesRequestwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn api_limit100(
self,
value: ApiLimit100,
) -> FactionRevivesRequestBuilder<SetApiLimit100<S>>where
S::ApiLimit100: IsUnset,
pub fn api_limit100(
self,
value: ApiLimit100,
) -> FactionRevivesRequestBuilder<SetApiLimit100<S>>where
S::ApiLimit100: IsUnset,
Sourcepub fn maybe_api_limit100(
self,
value: Option<ApiLimit100>,
) -> FactionRevivesRequestBuilder<SetApiLimit100<S>>where
S::ApiLimit100: IsUnset,
pub fn maybe_api_limit100(
self,
value: Option<ApiLimit100>,
) -> FactionRevivesRequestBuilder<SetApiLimit100<S>>where
S::ApiLimit100: IsUnset,
Sourcepub fn api_sort_desc(
self,
value: ApiSortDesc,
) -> FactionRevivesRequestBuilder<SetApiSortDesc<S>>where
S::ApiSortDesc: IsUnset,
pub fn api_sort_desc(
self,
value: ApiSortDesc,
) -> FactionRevivesRequestBuilder<SetApiSortDesc<S>>where
S::ApiSortDesc: IsUnset,
Sourcepub fn maybe_api_sort_desc(
self,
value: Option<ApiSortDesc>,
) -> FactionRevivesRequestBuilder<SetApiSortDesc<S>>where
S::ApiSortDesc: IsUnset,
pub fn maybe_api_sort_desc(
self,
value: Option<ApiSortDesc>,
) -> FactionRevivesRequestBuilder<SetApiSortDesc<S>>where
S::ApiSortDesc: IsUnset,
Sourcepub fn api_to(self, value: ApiTo) -> FactionRevivesRequestBuilder<SetApiTo<S>>where
S::ApiTo: IsUnset,
pub fn api_to(self, value: ApiTo) -> FactionRevivesRequestBuilder<SetApiTo<S>>where
S::ApiTo: IsUnset,
Sourcepub fn maybe_api_to(
self,
value: Option<ApiTo>,
) -> FactionRevivesRequestBuilder<SetApiTo<S>>where
S::ApiTo: IsUnset,
pub fn maybe_api_to(
self,
value: Option<ApiTo>,
) -> FactionRevivesRequestBuilder<SetApiTo<S>>where
S::ApiTo: IsUnset,
Sourcepub fn api_from(
self,
value: ApiFrom,
) -> FactionRevivesRequestBuilder<SetApiFrom<S>>where
S::ApiFrom: IsUnset,
pub fn api_from(
self,
value: ApiFrom,
) -> FactionRevivesRequestBuilder<SetApiFrom<S>>where
S::ApiFrom: IsUnset,
Sourcepub fn maybe_api_from(
self,
value: Option<ApiFrom>,
) -> FactionRevivesRequestBuilder<SetApiFrom<S>>where
S::ApiFrom: IsUnset,
pub fn maybe_api_from(
self,
value: Option<ApiFrom>,
) -> FactionRevivesRequestBuilder<SetApiFrom<S>>where
S::ApiFrom: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for FactionRevivesRequestBuilder<S>
impl<S> RefUnwindSafe for FactionRevivesRequestBuilder<S>
impl<S> Send for FactionRevivesRequestBuilder<S>
impl<S> Sync for FactionRevivesRequestBuilder<S>
impl<S> Unpin for FactionRevivesRequestBuilder<S>
impl<S> UnwindSafe for FactionRevivesRequestBuilder<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