pub struct UpdateWebhookRequest {
pub branch_name: Option<String>,
pub description: Option<String>,
pub webhook_id: String,
}
Expand description
The request structure for the update webhook request.
Fields§
§branch_name: Option<String>
The name for a branch that is part of an Amplify app.
description: Option<String>
The description for a webhook.
webhook_id: String
The unique ID for a webhook.
Trait Implementations§
Source§impl Clone for UpdateWebhookRequest
impl Clone for UpdateWebhookRequest
Source§fn clone(&self) -> UpdateWebhookRequest
fn clone(&self) -> UpdateWebhookRequest
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 UpdateWebhookRequest
impl Debug for UpdateWebhookRequest
Source§impl Default for UpdateWebhookRequest
impl Default for UpdateWebhookRequest
Source§fn default() -> UpdateWebhookRequest
fn default() -> UpdateWebhookRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateWebhookRequest
impl PartialEq for UpdateWebhookRequest
Source§impl Serialize for UpdateWebhookRequest
impl Serialize for UpdateWebhookRequest
impl StructuralPartialEq for UpdateWebhookRequest
Auto Trait Implementations§
impl Freeze for UpdateWebhookRequest
impl RefUnwindSafe for UpdateWebhookRequest
impl Send for UpdateWebhookRequest
impl Sync for UpdateWebhookRequest
impl Unpin for UpdateWebhookRequest
impl UnwindSafe for UpdateWebhookRequest
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