pub struct S3NotificationEvent {
pub bucket: String,
pub key: String,
pub event_type: String,
pub timestamp: DateTime<Utc>,
}Expand description
A recorded S3 notification event for introspection.
Fields§
§bucket: String§key: String§event_type: String§timestamp: DateTime<Utc>Trait Implementations§
Source§impl Clone for S3NotificationEvent
impl Clone for S3NotificationEvent
Source§fn clone(&self) -> S3NotificationEvent
fn clone(&self) -> S3NotificationEvent
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 S3NotificationEvent
impl RefUnwindSafe for S3NotificationEvent
impl Send for S3NotificationEvent
impl Sync for S3NotificationEvent
impl Unpin for S3NotificationEvent
impl UnsafeUnpin for S3NotificationEvent
impl UnwindSafe for S3NotificationEvent
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