pub struct S3Notification {
pub bucket: String,
pub key: String,
pub event_type: String,
pub timestamp: String,
}Fields§
§bucket: String§key: String§event_type: String§timestamp: StringTrait Implementations§
Source§impl Clone for S3Notification
impl Clone for S3Notification
Source§fn clone(&self) -> S3Notification
fn clone(&self) -> S3Notification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 S3Notification
impl Debug for S3Notification
Source§impl<'de> Deserialize<'de> for S3Notification
impl<'de> Deserialize<'de> for S3Notification
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
Auto Trait Implementations§
impl Freeze for S3Notification
impl RefUnwindSafe for S3Notification
impl Send for S3Notification
impl Sync for S3Notification
impl Unpin for S3Notification
impl UnsafeUnpin for S3Notification
impl UnwindSafe for S3Notification
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