Struct aws_sdk_elasticloadbalancing::operation::describe_account_limits::builders::DescribeAccountLimitsOutputBuilder
source · #[non_exhaustive]pub struct DescribeAccountLimitsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeAccountLimitsOutput
.
Implementations§
source§impl DescribeAccountLimitsOutputBuilder
impl DescribeAccountLimitsOutputBuilder
sourcepub fn limits(self, input: Limit) -> Self
pub fn limits(self, input: Limit) -> Self
Appends an item to limits
.
To override the contents of this collection use set_limits
.
Information about the limits.
sourcepub fn set_limits(self, input: Option<Vec<Limit>>) -> Self
pub fn set_limits(self, input: Option<Vec<Limit>>) -> Self
Information about the limits.
sourcepub fn get_limits(&self) -> &Option<Vec<Limit>>
pub fn get_limits(&self) -> &Option<Vec<Limit>>
Information about the limits.
sourcepub fn next_marker(self, input: impl Into<String>) -> Self
pub fn next_marker(self, input: impl Into<String>) -> Self
The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
sourcepub fn set_next_marker(self, input: Option<String>) -> Self
pub fn set_next_marker(self, input: Option<String>) -> Self
The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
sourcepub fn get_next_marker(&self) -> &Option<String>
pub fn get_next_marker(&self) -> &Option<String>
The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
sourcepub fn build(self) -> DescribeAccountLimitsOutput
pub fn build(self) -> DescribeAccountLimitsOutput
Consumes the builder and constructs a DescribeAccountLimitsOutput
.
Trait Implementations§
source§impl Clone for DescribeAccountLimitsOutputBuilder
impl Clone for DescribeAccountLimitsOutputBuilder
source§fn clone(&self) -> DescribeAccountLimitsOutputBuilder
fn clone(&self) -> DescribeAccountLimitsOutputBuilder
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 Default for DescribeAccountLimitsOutputBuilder
impl Default for DescribeAccountLimitsOutputBuilder
source§fn default() -> DescribeAccountLimitsOutputBuilder
fn default() -> DescribeAccountLimitsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeAccountLimitsOutputBuilder
impl PartialEq for DescribeAccountLimitsOutputBuilder
source§fn eq(&self, other: &DescribeAccountLimitsOutputBuilder) -> bool
fn eq(&self, other: &DescribeAccountLimitsOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeAccountLimitsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeAccountLimitsOutputBuilder
impl RefUnwindSafe for DescribeAccountLimitsOutputBuilder
impl Send for DescribeAccountLimitsOutputBuilder
impl Sync for DescribeAccountLimitsOutputBuilder
impl Unpin for DescribeAccountLimitsOutputBuilder
impl UnwindSafe for DescribeAccountLimitsOutputBuilder
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.