pub struct ListFunctionsResponse {
pub functions: Option<Vec<FunctionConfiguration>>,
pub next_marker: Option<String>,
}
Expand description
A list of Lambda functions.
Fields§
§functions: Option<Vec<FunctionConfiguration>>
A list of Lambda functions.
next_marker: Option<String>
The pagination token that's included if more results are available.
Trait Implementations§
Source§impl Clone for ListFunctionsResponse
impl Clone for ListFunctionsResponse
Source§fn clone(&self) -> ListFunctionsResponse
fn clone(&self) -> ListFunctionsResponse
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 ListFunctionsResponse
impl Debug for ListFunctionsResponse
Source§impl Default for ListFunctionsResponse
impl Default for ListFunctionsResponse
Source§fn default() -> ListFunctionsResponse
fn default() -> ListFunctionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListFunctionsResponse
impl<'de> Deserialize<'de> for ListFunctionsResponse
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 ListFunctionsResponse
impl PartialEq for ListFunctionsResponse
impl StructuralPartialEq for ListFunctionsResponse
Auto Trait Implementations§
impl Freeze for ListFunctionsResponse
impl RefUnwindSafe for ListFunctionsResponse
impl Send for ListFunctionsResponse
impl Sync for ListFunctionsResponse
impl Unpin for ListFunctionsResponse
impl UnwindSafe for ListFunctionsResponse
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