pub struct ListFunctionEventInvokeConfigsResponse {
pub function_event_invoke_configs: Option<Vec<FunctionEventInvokeConfig>>,
pub next_marker: Option<String>,
}
Fields§
§function_event_invoke_configs: Option<Vec<FunctionEventInvokeConfig>>
A list of configurations.
next_marker: Option<String>
The pagination token that's included if more results are available.
Trait Implementations§
Source§impl Clone for ListFunctionEventInvokeConfigsResponse
impl Clone for ListFunctionEventInvokeConfigsResponse
Source§fn clone(&self) -> ListFunctionEventInvokeConfigsResponse
fn clone(&self) -> ListFunctionEventInvokeConfigsResponse
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 ListFunctionEventInvokeConfigsResponse
impl Default for ListFunctionEventInvokeConfigsResponse
Source§fn default() -> ListFunctionEventInvokeConfigsResponse
fn default() -> ListFunctionEventInvokeConfigsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListFunctionEventInvokeConfigsResponse
impl<'de> Deserialize<'de> for ListFunctionEventInvokeConfigsResponse
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 ListFunctionEventInvokeConfigsResponse
impl PartialEq for ListFunctionEventInvokeConfigsResponse
Source§fn eq(&self, other: &ListFunctionEventInvokeConfigsResponse) -> bool
fn eq(&self, other: &ListFunctionEventInvokeConfigsResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListFunctionEventInvokeConfigsResponse
Auto Trait Implementations§
impl Freeze for ListFunctionEventInvokeConfigsResponse
impl RefUnwindSafe for ListFunctionEventInvokeConfigsResponse
impl Send for ListFunctionEventInvokeConfigsResponse
impl Sync for ListFunctionEventInvokeConfigsResponse
impl Unpin for ListFunctionEventInvokeConfigsResponse
impl UnwindSafe for ListFunctionEventInvokeConfigsResponse
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