pub enum StripeWebhookResponseStatus {
Ok,
}Expand description
Always "ok" on a verified, recorded event.
JSON schema
{
"description": "Always `\"ok\"` on a verified, recorded event.",
"type": "string",
"enum": [
"ok"
]
}Variants§
Ok
Trait Implementations§
Source§impl Clone for StripeWebhookResponseStatus
impl Clone for StripeWebhookResponseStatus
Source§fn clone(&self) -> StripeWebhookResponseStatus
fn clone(&self) -> StripeWebhookResponseStatus
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 StripeWebhookResponseStatus
Source§impl Debug for StripeWebhookResponseStatus
impl Debug for StripeWebhookResponseStatus
Source§impl<'de> Deserialize<'de> for StripeWebhookResponseStatus
impl<'de> Deserialize<'de> for StripeWebhookResponseStatus
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 StripeWebhookResponseStatus
Source§impl Hash for StripeWebhookResponseStatus
impl Hash for StripeWebhookResponseStatus
Source§impl Ord for StripeWebhookResponseStatus
impl Ord for StripeWebhookResponseStatus
Source§fn cmp(&self, other: &StripeWebhookResponseStatus) -> Ordering
fn cmp(&self, other: &StripeWebhookResponseStatus) -> 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 StripeWebhookResponseStatus
impl PartialEq for StripeWebhookResponseStatus
Source§fn eq(&self, other: &StripeWebhookResponseStatus) -> bool
fn eq(&self, other: &StripeWebhookResponseStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for StripeWebhookResponseStatus
impl PartialOrd for StripeWebhookResponseStatus
impl StructuralPartialEq for StripeWebhookResponseStatus
Source§impl TryFrom<&String> for StripeWebhookResponseStatus
impl TryFrom<&String> for StripeWebhookResponseStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for StripeWebhookResponseStatus
impl TryFrom<&str> for StripeWebhookResponseStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for StripeWebhookResponseStatus
impl TryFrom<String> for StripeWebhookResponseStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for StripeWebhookResponseStatus
impl RefUnwindSafe for StripeWebhookResponseStatus
impl Send for StripeWebhookResponseStatus
impl Sync for StripeWebhookResponseStatus
impl Unpin for StripeWebhookResponseStatus
impl UnsafeUnpin for StripeWebhookResponseStatus
impl UnwindSafe for StripeWebhookResponseStatus
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