pub struct BatchCallWebhookConfig {
pub endpoint: String,
pub events: Vec<BatchCallWebhookEvent>,
}Expand description
Configures a batch’s webhook.
Fields§
§endpoint: StringWhere to deliver events.
events: Vec<BatchCallWebhookEvent>The events to subscribe to.
Trait Implementations§
Source§impl Clone for BatchCallWebhookConfig
impl Clone for BatchCallWebhookConfig
Source§fn clone(&self) -> BatchCallWebhookConfig
fn clone(&self) -> BatchCallWebhookConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchCallWebhookConfig
impl Debug for BatchCallWebhookConfig
Source§impl Default for BatchCallWebhookConfig
impl Default for BatchCallWebhookConfig
Source§fn default() -> BatchCallWebhookConfig
fn default() -> BatchCallWebhookConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BatchCallWebhookConfig
impl RefUnwindSafe for BatchCallWebhookConfig
impl Send for BatchCallWebhookConfig
impl Sync for BatchCallWebhookConfig
impl Unpin for BatchCallWebhookConfig
impl UnsafeUnpin for BatchCallWebhookConfig
impl UnwindSafe for BatchCallWebhookConfig
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