pub struct ListVersionsByFunctionResponse {
pub next_marker: Option<String>,
pub versions: Option<Vec<FunctionConfiguration>>,
}
Fields§
§next_marker: Option<String>
The pagination token that's included if more results are available.
versions: Option<Vec<FunctionConfiguration>>
A list of Lambda function versions.
Trait Implementations§
Source§impl Clone for ListVersionsByFunctionResponse
impl Clone for ListVersionsByFunctionResponse
Source§fn clone(&self) -> ListVersionsByFunctionResponse
fn clone(&self) -> ListVersionsByFunctionResponse
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 ListVersionsByFunctionResponse
impl Default for ListVersionsByFunctionResponse
Source§fn default() -> ListVersionsByFunctionResponse
fn default() -> ListVersionsByFunctionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListVersionsByFunctionResponse
impl<'de> Deserialize<'de> for ListVersionsByFunctionResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListVersionsByFunctionResponse
impl PartialEq for ListVersionsByFunctionResponse
Source§fn eq(&self, other: &ListVersionsByFunctionResponse) -> bool
fn eq(&self, other: &ListVersionsByFunctionResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListVersionsByFunctionResponse
Auto Trait Implementations§
impl Freeze for ListVersionsByFunctionResponse
impl RefUnwindSafe for ListVersionsByFunctionResponse
impl Send for ListVersionsByFunctionResponse
impl Sync for ListVersionsByFunctionResponse
impl Unpin for ListVersionsByFunctionResponse
impl UnwindSafe for ListVersionsByFunctionResponse
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