pub struct ExecuteWebhook {
pub webhook_id: Id<WebhookMarker>,
pub token: Zeroizing<String>,
pub message: WebhookMessage,
pub wait: bool,
}Fields§
§webhook_id: Id<WebhookMarker>§token: Zeroizing<String>§message: WebhookMessage§wait: boolImplementations§
Source§impl ExecuteWebhook
impl ExecuteWebhook
Sourcepub fn builder() -> ExecuteWebhookBuilder
pub fn builder() -> ExecuteWebhookBuilder
Create an instance of ExecuteWebhook using the builder syntax
Trait Implementations§
Source§impl Clone for ExecuteWebhook
impl Clone for ExecuteWebhook
Source§fn clone(&self) -> ExecuteWebhook
fn clone(&self) -> ExecuteWebhook
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 ExecuteWebhook
impl Debug for ExecuteWebhook
Auto Trait Implementations§
impl Freeze for ExecuteWebhook
impl RefUnwindSafe for ExecuteWebhook
impl Send for ExecuteWebhook
impl Sync for ExecuteWebhook
impl Unpin for ExecuteWebhook
impl UnsafeUnpin for ExecuteWebhook
impl UnwindSafe for ExecuteWebhook
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