pub struct DeleteWebhookRequest {
pub webhook_id: String,
}
Expand description
The request structure for the delete webhook request.
Fields§
§webhook_id: String
The unique ID for a webhook.
Trait Implementations§
Source§impl Clone for DeleteWebhookRequest
impl Clone for DeleteWebhookRequest
Source§fn clone(&self) -> DeleteWebhookRequest
fn clone(&self) -> DeleteWebhookRequest
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 moreSource§impl Debug for DeleteWebhookRequest
impl Debug for DeleteWebhookRequest
Source§impl Default for DeleteWebhookRequest
impl Default for DeleteWebhookRequest
Source§fn default() -> DeleteWebhookRequest
fn default() -> DeleteWebhookRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteWebhookRequest
impl PartialEq for DeleteWebhookRequest
Source§impl Serialize for DeleteWebhookRequest
impl Serialize for DeleteWebhookRequest
impl StructuralPartialEq for DeleteWebhookRequest
Auto Trait Implementations§
impl Freeze for DeleteWebhookRequest
impl RefUnwindSafe for DeleteWebhookRequest
impl Send for DeleteWebhookRequest
impl Sync for DeleteWebhookRequest
impl Unpin for DeleteWebhookRequest
impl UnwindSafe for DeleteWebhookRequest
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