#[non_exhaustive]pub struct ListLayersInputBuilder { /* private fields */ }
Expand description
A builder for ListLayersInput
.
Implementations§
source§impl ListLayersInputBuilder
impl ListLayersInputBuilder
sourcepub fn compatible_runtime(self, input: Runtime) -> Self
pub fn compatible_runtime(self, input: Runtime) -> Self
A runtime identifier. For example, go1.x
.
sourcepub fn set_compatible_runtime(self, input: Option<Runtime>) -> Self
pub fn set_compatible_runtime(self, input: Option<Runtime>) -> Self
A runtime identifier. For example, go1.x
.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
A pagination token returned by a previous call.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
A pagination token returned by a previous call.
sourcepub fn set_max_items(self, input: Option<i32>) -> Self
pub fn set_max_items(self, input: Option<i32>) -> Self
The maximum number of layers to return.
sourcepub fn compatible_architecture(self, input: Architecture) -> Self
pub fn compatible_architecture(self, input: Architecture) -> Self
The compatible instruction set architecture.
sourcepub fn set_compatible_architecture(self, input: Option<Architecture>) -> Self
pub fn set_compatible_architecture(self, input: Option<Architecture>) -> Self
The compatible instruction set architecture.
sourcepub fn build(self) -> Result<ListLayersInput, BuildError>
pub fn build(self) -> Result<ListLayersInput, BuildError>
Consumes the builder and constructs a ListLayersInput
.
Trait Implementations§
source§impl Clone for ListLayersInputBuilder
impl Clone for ListLayersInputBuilder
source§fn clone(&self) -> ListLayersInputBuilder
fn clone(&self) -> ListLayersInputBuilder
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 ListLayersInputBuilder
impl Debug for ListLayersInputBuilder
source§impl Default for ListLayersInputBuilder
impl Default for ListLayersInputBuilder
source§fn default() -> ListLayersInputBuilder
fn default() -> ListLayersInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ListLayersInputBuilder> for ListLayersInputBuilder
impl PartialEq<ListLayersInputBuilder> for ListLayersInputBuilder
source§fn eq(&self, other: &ListLayersInputBuilder) -> bool
fn eq(&self, other: &ListLayersInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.