pub struct DeleteNotificationRequest {
pub bucket: String,
pub notification: String,
}Expand description
Request message for DeleteNotification.
Fields§
§bucket: StringRequired. The parent bucket of the notification.
notification: StringRequired. ID of the notification to delete.
Trait Implementations§
Source§impl Clone for DeleteNotificationRequest
impl Clone for DeleteNotificationRequest
Source§fn clone(&self) -> DeleteNotificationRequest
fn clone(&self) -> DeleteNotificationRequest
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 Debug for DeleteNotificationRequest
impl Debug for DeleteNotificationRequest
Source§impl<'de> Deserialize<'de> for DeleteNotificationRequest
impl<'de> Deserialize<'de> for DeleteNotificationRequest
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
impl Eq for DeleteNotificationRequest
impl StructuralPartialEq for DeleteNotificationRequest
Auto Trait Implementations§
impl Freeze for DeleteNotificationRequest
impl RefUnwindSafe for DeleteNotificationRequest
impl Send for DeleteNotificationRequest
impl Sync for DeleteNotificationRequest
impl Unpin for DeleteNotificationRequest
impl UnwindSafe for DeleteNotificationRequest
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