pub struct UserAttacksfullRequestBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> UserAttacksfullRequestBuilder<S>
impl<S: State> UserAttacksfullRequestBuilder<S>
Sourcepub fn build(self) -> UserAttacksfullRequestwhere
S: IsComplete,
pub fn build(self) -> UserAttacksfullRequestwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn api_limit1000(
self,
value: ApiLimit1000,
) -> UserAttacksfullRequestBuilder<SetApiLimit1000<S>>where
S::ApiLimit1000: IsUnset,
pub fn api_limit1000(
self,
value: ApiLimit1000,
) -> UserAttacksfullRequestBuilder<SetApiLimit1000<S>>where
S::ApiLimit1000: IsUnset,
Sourcepub fn maybe_api_limit1000(
self,
value: Option<ApiLimit1000>,
) -> UserAttacksfullRequestBuilder<SetApiLimit1000<S>>where
S::ApiLimit1000: IsUnset,
pub fn maybe_api_limit1000(
self,
value: Option<ApiLimit1000>,
) -> UserAttacksfullRequestBuilder<SetApiLimit1000<S>>where
S::ApiLimit1000: IsUnset,
Sourcepub fn api_sort(
self,
value: ApiSort,
) -> UserAttacksfullRequestBuilder<SetApiSort<S>>where
S::ApiSort: IsUnset,
pub fn api_sort(
self,
value: ApiSort,
) -> UserAttacksfullRequestBuilder<SetApiSort<S>>where
S::ApiSort: IsUnset,
Sourcepub fn maybe_api_sort(
self,
value: Option<ApiSort>,
) -> UserAttacksfullRequestBuilder<SetApiSort<S>>where
S::ApiSort: IsUnset,
pub fn maybe_api_sort(
self,
value: Option<ApiSort>,
) -> UserAttacksfullRequestBuilder<SetApiSort<S>>where
S::ApiSort: IsUnset,
Sourcepub fn api_to(self, value: ApiTo) -> UserAttacksfullRequestBuilder<SetApiTo<S>>where
S::ApiTo: IsUnset,
pub fn api_to(self, value: ApiTo) -> UserAttacksfullRequestBuilder<SetApiTo<S>>where
S::ApiTo: IsUnset,
Sourcepub fn maybe_api_to(
self,
value: Option<ApiTo>,
) -> UserAttacksfullRequestBuilder<SetApiTo<S>>where
S::ApiTo: IsUnset,
pub fn maybe_api_to(
self,
value: Option<ApiTo>,
) -> UserAttacksfullRequestBuilder<SetApiTo<S>>where
S::ApiTo: IsUnset,
Sourcepub fn api_from(
self,
value: ApiFrom,
) -> UserAttacksfullRequestBuilder<SetApiFrom<S>>where
S::ApiFrom: IsUnset,
pub fn api_from(
self,
value: ApiFrom,
) -> UserAttacksfullRequestBuilder<SetApiFrom<S>>where
S::ApiFrom: IsUnset,
Sourcepub fn maybe_api_from(
self,
value: Option<ApiFrom>,
) -> UserAttacksfullRequestBuilder<SetApiFrom<S>>where
S::ApiFrom: IsUnset,
pub fn maybe_api_from(
self,
value: Option<ApiFrom>,
) -> UserAttacksfullRequestBuilder<SetApiFrom<S>>where
S::ApiFrom: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for UserAttacksfullRequestBuilder<S>
impl<S> RefUnwindSafe for UserAttacksfullRequestBuilder<S>
impl<S> Send for UserAttacksfullRequestBuilder<S>
impl<S> Sync for UserAttacksfullRequestBuilder<S>
impl<S> Unpin for UserAttacksfullRequestBuilder<S>
impl<S> UnwindSafe for UserAttacksfullRequestBuilder<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