pub enum IntentAuthorizedWebhookPayloadType {
IntentAuthorized,
}Expand description
The type of webhook event.
JSON schema
{
"description": "The type of webhook event.",
"type": "string",
"enum": [
"intent.authorized"
]
}Variants§
IntentAuthorized
Trait Implementations§
Source§impl Clone for IntentAuthorizedWebhookPayloadType
impl Clone for IntentAuthorizedWebhookPayloadType
Source§fn clone(&self) -> IntentAuthorizedWebhookPayloadType
fn clone(&self) -> IntentAuthorizedWebhookPayloadType
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 moreimpl Copy for IntentAuthorizedWebhookPayloadType
Source§impl<'de> Deserialize<'de> for IntentAuthorizedWebhookPayloadType
impl<'de> Deserialize<'de> for IntentAuthorizedWebhookPayloadType
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
impl Eq for IntentAuthorizedWebhookPayloadType
Source§impl From<&IntentAuthorizedWebhookPayloadType> for IntentAuthorizedWebhookPayloadType
impl From<&IntentAuthorizedWebhookPayloadType> for IntentAuthorizedWebhookPayloadType
Source§fn from(value: &IntentAuthorizedWebhookPayloadType) -> Self
fn from(value: &IntentAuthorizedWebhookPayloadType) -> Self
Converts to this type from the input type.
Source§impl Ord for IntentAuthorizedWebhookPayloadType
impl Ord for IntentAuthorizedWebhookPayloadType
Source§fn cmp(&self, other: &IntentAuthorizedWebhookPayloadType) -> Ordering
fn cmp(&self, other: &IntentAuthorizedWebhookPayloadType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IntentAuthorizedWebhookPayloadType
impl PartialEq for IntentAuthorizedWebhookPayloadType
Source§fn eq(&self, other: &IntentAuthorizedWebhookPayloadType) -> bool
fn eq(&self, other: &IntentAuthorizedWebhookPayloadType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IntentAuthorizedWebhookPayloadType
impl PartialOrd for IntentAuthorizedWebhookPayloadType
impl StructuralPartialEq for IntentAuthorizedWebhookPayloadType
Source§impl TryFrom<&String> for IntentAuthorizedWebhookPayloadType
impl TryFrom<&String> for IntentAuthorizedWebhookPayloadType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for IntentAuthorizedWebhookPayloadType
impl TryFrom<&str> for IntentAuthorizedWebhookPayloadType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for IntentAuthorizedWebhookPayloadType
impl TryFrom<String> for IntentAuthorizedWebhookPayloadType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for IntentAuthorizedWebhookPayloadType
impl RefUnwindSafe for IntentAuthorizedWebhookPayloadType
impl Send for IntentAuthorizedWebhookPayloadType
impl Sync for IntentAuthorizedWebhookPayloadType
impl Unpin for IntentAuthorizedWebhookPayloadType
impl UnsafeUnpin for IntentAuthorizedWebhookPayloadType
impl UnwindSafe for IntentAuthorizedWebhookPayloadType
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