pub struct ListLayerVersionsRequest {
pub compatible_runtime: Option<String>,
pub layer_name: String,
pub marker: Option<String>,
pub max_items: Option<i64>,
}
Fields§
§compatible_runtime: Option<String>
A runtime identifier. For example, go1.x
.
layer_name: String
The name or Amazon Resource Name (ARN) of the layer.
marker: Option<String>
A pagination token returned by a previous call.
max_items: Option<i64>
The maximum number of versions to return.
Trait Implementations§
Source§impl Clone for ListLayerVersionsRequest
impl Clone for ListLayerVersionsRequest
Source§fn clone(&self) -> ListLayerVersionsRequest
fn clone(&self) -> ListLayerVersionsRequest
Returns a duplicate 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 ListLayerVersionsRequest
impl Debug for ListLayerVersionsRequest
Source§impl Default for ListLayerVersionsRequest
impl Default for ListLayerVersionsRequest
Source§fn default() -> ListLayerVersionsRequest
fn default() -> ListLayerVersionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListLayerVersionsRequest
impl PartialEq for ListLayerVersionsRequest
Source§impl Serialize for ListLayerVersionsRequest
impl Serialize for ListLayerVersionsRequest
impl StructuralPartialEq for ListLayerVersionsRequest
Auto Trait Implementations§
impl Freeze for ListLayerVersionsRequest
impl RefUnwindSafe for ListLayerVersionsRequest
impl Send for ListLayerVersionsRequest
impl Sync for ListLayerVersionsRequest
impl Unpin for ListLayerVersionsRequest
impl UnwindSafe for ListLayerVersionsRequest
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