pub struct WebhookEventLogConfiguration {
pub delete: Option<Box<DeleteConfiguration>>,
pub enabled: Option<bool>,
}
Expand description
WebhookEventLogConfiguration : The system configuration for Webhook Event Log data.
Fields§
§delete: Option<Box<DeleteConfiguration>>
§enabled: Option<bool>
Implementations§
Source§impl WebhookEventLogConfiguration
impl WebhookEventLogConfiguration
Sourcepub fn new() -> WebhookEventLogConfiguration
pub fn new() -> WebhookEventLogConfiguration
The system configuration for Webhook Event Log data.
Trait Implementations§
Source§impl Clone for WebhookEventLogConfiguration
impl Clone for WebhookEventLogConfiguration
Source§fn clone(&self) -> WebhookEventLogConfiguration
fn clone(&self) -> WebhookEventLogConfiguration
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WebhookEventLogConfiguration
impl Debug for WebhookEventLogConfiguration
Source§impl Default for WebhookEventLogConfiguration
impl Default for WebhookEventLogConfiguration
Source§fn default() -> WebhookEventLogConfiguration
fn default() -> WebhookEventLogConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookEventLogConfiguration
impl<'de> Deserialize<'de> for WebhookEventLogConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WebhookEventLogConfiguration
impl PartialEq for WebhookEventLogConfiguration
Source§fn eq(&self, other: &WebhookEventLogConfiguration) -> bool
fn eq(&self, other: &WebhookEventLogConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WebhookEventLogConfiguration
Auto Trait Implementations§
impl Freeze for WebhookEventLogConfiguration
impl RefUnwindSafe for WebhookEventLogConfiguration
impl Send for WebhookEventLogConfiguration
impl Sync for WebhookEventLogConfiguration
impl Unpin for WebhookEventLogConfiguration
impl UnwindSafe for WebhookEventLogConfiguration
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