pub struct ListEventSourceMappingsResponse {
pub event_source_mappings: Option<Vec<EventSourceMappingConfiguration>>,
pub next_marker: Option<String>,
}
Fields§
§event_source_mappings: Option<Vec<EventSourceMappingConfiguration>>
A list of event source mappings.
next_marker: Option<String>
A pagination token that's returned when the response doesn't contain all event source mappings.
Trait Implementations§
Source§impl Clone for ListEventSourceMappingsResponse
impl Clone for ListEventSourceMappingsResponse
Source§fn clone(&self) -> ListEventSourceMappingsResponse
fn clone(&self) -> ListEventSourceMappingsResponse
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 ListEventSourceMappingsResponse
impl Default for ListEventSourceMappingsResponse
Source§fn default() -> ListEventSourceMappingsResponse
fn default() -> ListEventSourceMappingsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListEventSourceMappingsResponse
impl<'de> Deserialize<'de> for ListEventSourceMappingsResponse
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 ListEventSourceMappingsResponse
impl PartialEq for ListEventSourceMappingsResponse
Source§fn eq(&self, other: &ListEventSourceMappingsResponse) -> bool
fn eq(&self, other: &ListEventSourceMappingsResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListEventSourceMappingsResponse
Auto Trait Implementations§
impl Freeze for ListEventSourceMappingsResponse
impl RefUnwindSafe for ListEventSourceMappingsResponse
impl Send for ListEventSourceMappingsResponse
impl Sync for ListEventSourceMappingsResponse
impl Unpin for ListEventSourceMappingsResponse
impl UnwindSafe for ListEventSourceMappingsResponse
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