pub struct UpdateWebhookParams {
pub webhook_id: String,
pub update_webhook_request: UpdateWebhookRequest,
}
Expand description
struct for passing parameters to the method [update_webhook
]
Fields§
§webhook_id: String
The unique identifier of the webhook
update_webhook_request: UpdateWebhookRequest
Implementations§
Source§impl UpdateWebhookParams
impl UpdateWebhookParams
Sourcepub fn builder() -> UpdateWebhookParamsBuilder
pub fn builder() -> UpdateWebhookParamsBuilder
Create an instance of UpdateWebhookParams
using the builder syntax
Trait Implementations§
Source§impl Clone for UpdateWebhookParams
impl Clone for UpdateWebhookParams
Source§fn clone(&self) -> UpdateWebhookParams
fn clone(&self) -> UpdateWebhookParams
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 moreAuto Trait Implementations§
impl Freeze for UpdateWebhookParams
impl RefUnwindSafe for UpdateWebhookParams
impl Send for UpdateWebhookParams
impl Sync for UpdateWebhookParams
impl Unpin for UpdateWebhookParams
impl UnwindSafe for UpdateWebhookParams
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