#[non_exhaustive]pub struct GetRestApisInputBuilder { /* private fields */ }Expand description
A builder for GetRestApisInput.
Implementations§
source§impl GetRestApisInputBuilder
impl GetRestApisInputBuilder
sourcepub fn position(self, input: impl Into<String>) -> Self
pub fn position(self, input: impl Into<String>) -> Self
The current pagination position in the paged result set.
sourcepub fn set_position(self, input: Option<String>) -> Self
pub fn set_position(self, input: Option<String>) -> Self
The current pagination position in the paged result set.
sourcepub fn get_position(&self) -> &Option<String>
pub fn get_position(&self) -> &Option<String>
The current pagination position in the paged result set.
sourcepub fn limit(self, input: i32) -> Self
pub fn limit(self, input: i32) -> Self
The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
sourcepub fn set_limit(self, input: Option<i32>) -> Self
pub fn set_limit(self, input: Option<i32>) -> Self
The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
sourcepub fn get_limit(&self) -> &Option<i32>
pub fn get_limit(&self) -> &Option<i32>
The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
sourcepub fn build(self) -> Result<GetRestApisInput, BuildError>
pub fn build(self) -> Result<GetRestApisInput, BuildError>
Consumes the builder and constructs a GetRestApisInput.
source§impl GetRestApisInputBuilder
impl GetRestApisInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetRestApisOutput, SdkError<GetRestApisError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetRestApisOutput, SdkError<GetRestApisError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetRestApisInputBuilder
impl Clone for GetRestApisInputBuilder
source§fn clone(&self) -> GetRestApisInputBuilder
fn clone(&self) -> GetRestApisInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GetRestApisInputBuilder
impl Debug for GetRestApisInputBuilder
source§impl Default for GetRestApisInputBuilder
impl Default for GetRestApisInputBuilder
source§fn default() -> GetRestApisInputBuilder
fn default() -> GetRestApisInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetRestApisInputBuilder
impl PartialEq for GetRestApisInputBuilder
impl StructuralPartialEq for GetRestApisInputBuilder
Auto Trait Implementations§
impl Freeze for GetRestApisInputBuilder
impl RefUnwindSafe for GetRestApisInputBuilder
impl Send for GetRestApisInputBuilder
impl Sync for GetRestApisInputBuilder
impl Unpin for GetRestApisInputBuilder
impl UnwindSafe for GetRestApisInputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.