pub struct GetValidationKeysListParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetValidationKeysListParamsBuilder<S>
impl<S: State> GetValidationKeysListParamsBuilder<S>
Sourcepub fn build(self) -> GetValidationKeysListParamswhere
S: IsComplete,
pub fn build(self) -> GetValidationKeysListParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn page_cursor(
self,
value: String,
) -> GetValidationKeysListParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
pub fn page_cursor(
self,
value: String,
) -> GetValidationKeysListParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
Sourcepub fn maybe_page_cursor(
self,
value: Option<String>,
) -> GetValidationKeysListParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
pub fn maybe_page_cursor(
self,
value: Option<String>,
) -> GetValidationKeysListParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
Sourcepub fn page_size(
self,
value: f64,
) -> GetValidationKeysListParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn page_size(
self,
value: f64,
) -> GetValidationKeysListParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
Sourcepub fn maybe_page_size(
self,
value: Option<f64>,
) -> GetValidationKeysListParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn maybe_page_size(
self,
value: Option<f64>,
) -> GetValidationKeysListParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
Sourcepub fn sort_by(
self,
value: String,
) -> GetValidationKeysListParamsBuilder<SetSortBy<S>>where
S::SortBy: IsUnset,
pub fn sort_by(
self,
value: String,
) -> GetValidationKeysListParamsBuilder<SetSortBy<S>>where
S::SortBy: IsUnset,
Sourcepub fn maybe_sort_by(
self,
value: Option<String>,
) -> GetValidationKeysListParamsBuilder<SetSortBy<S>>where
S::SortBy: IsUnset,
pub fn maybe_sort_by(
self,
value: Option<String>,
) -> GetValidationKeysListParamsBuilder<SetSortBy<S>>where
S::SortBy: IsUnset,
Sourcepub fn order(
self,
value: String,
) -> GetValidationKeysListParamsBuilder<SetOrder<S>>where
S::Order: IsUnset,
pub fn order(
self,
value: String,
) -> GetValidationKeysListParamsBuilder<SetOrder<S>>where
S::Order: IsUnset,
Sourcepub fn maybe_order(
self,
value: Option<String>,
) -> GetValidationKeysListParamsBuilder<SetOrder<S>>where
S::Order: IsUnset,
pub fn maybe_order(
self,
value: Option<String>,
) -> GetValidationKeysListParamsBuilder<SetOrder<S>>where
S::Order: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetValidationKeysListParamsBuilder<S>
impl<S> RefUnwindSafe for GetValidationKeysListParamsBuilder<S>
impl<S> Send for GetValidationKeysListParamsBuilder<S>
impl<S> Sync for GetValidationKeysListParamsBuilder<S>
impl<S> Unpin for GetValidationKeysListParamsBuilder<S>
impl<S> UnwindSafe for GetValidationKeysListParamsBuilder<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