pub struct OperationalWebhookEndpointOut {
pub created_at: String,
pub description: String,
pub disabled: Option<bool>,
pub filter_types: Option<Vec<String>>,
pub id: String,
pub metadata: HashMap<String, String>,
pub rate_limit: Option<i32>,
pub uid: Option<String>,
pub updated_at: String,
pub url: String,
}
Fields§
§created_at: String
§description: String
An example endpoint name
disabled: Option<bool>
§filter_types: Option<Vec<String>>
§id: String
The ep’s ID
metadata: HashMap<String, String>
§rate_limit: Option<i32>
§uid: Option<String>
Optional unique identifier for the endpoint
updated_at: String
§url: String
Implementations§
Trait Implementations§
Source§impl Clone for OperationalWebhookEndpointOut
impl Clone for OperationalWebhookEndpointOut
Source§fn clone(&self) -> OperationalWebhookEndpointOut
fn clone(&self) -> OperationalWebhookEndpointOut
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 Default for OperationalWebhookEndpointOut
impl Default for OperationalWebhookEndpointOut
Source§fn default() -> OperationalWebhookEndpointOut
fn default() -> OperationalWebhookEndpointOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OperationalWebhookEndpointOut
impl<'de> Deserialize<'de> for OperationalWebhookEndpointOut
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 OperationalWebhookEndpointOut
impl PartialEq for OperationalWebhookEndpointOut
Source§fn eq(&self, other: &OperationalWebhookEndpointOut) -> bool
fn eq(&self, other: &OperationalWebhookEndpointOut) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for OperationalWebhookEndpointOut
Auto Trait Implementations§
impl Freeze for OperationalWebhookEndpointOut
impl RefUnwindSafe for OperationalWebhookEndpointOut
impl Send for OperationalWebhookEndpointOut
impl Sync for OperationalWebhookEndpointOut
impl Unpin for OperationalWebhookEndpointOut
impl UnwindSafe for OperationalWebhookEndpointOut
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