pub struct EventListResponse {
pub response: AmiResponse,
pub events: Vec<AmiEvent>,
}Expand description
response from an event-generating action (e.g., Status, QueueStatus)
contains the initial response plus all events received until the completion marker event
Fields§
§response: AmiResponsethe initial response to the action
events: Vec<AmiEvent>events received as part of this action’s result
Trait Implementations§
Source§impl Clone for EventListResponse
impl Clone for EventListResponse
Source§fn clone(&self) -> EventListResponse
fn clone(&self) -> EventListResponse
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 moreAuto Trait Implementations§
impl Freeze for EventListResponse
impl RefUnwindSafe for EventListResponse
impl Send for EventListResponse
impl Sync for EventListResponse
impl Unpin for EventListResponse
impl UnsafeUnpin for EventListResponse
impl UnwindSafe for EventListResponse
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