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<StripeWebhookResponseStatus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<StripeWebhookResponseStatus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for StripeWebhookResponseStatus
Source§impl FromStr for StripeWebhookResponseStatus
impl FromStr for StripeWebhookResponseStatus
Source§type Err = ConversionError
type Err = ConversionError
The associated error which can be returned from parsing.
Source§fn from_str(value: &str) -> Result<StripeWebhookResponseStatus, ConversionError>
fn from_str(value: &str) -> Result<StripeWebhookResponseStatus, ConversionError>
Parses a string
s to return a value of this type. Read moreSource§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
Source§impl Serialize for StripeWebhookResponseStatus
impl Serialize for StripeWebhookResponseStatus
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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§fn try_from(
value: &String,
) -> Result<StripeWebhookResponseStatus, ConversionError>
fn try_from( value: &String, ) -> Result<StripeWebhookResponseStatus, ConversionError>
Performs the conversion.
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§fn try_from(value: &str) -> Result<StripeWebhookResponseStatus, ConversionError>
fn try_from(value: &str) -> Result<StripeWebhookResponseStatus, ConversionError>
Performs the conversion.
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§fn try_from(
value: String,
) -> Result<StripeWebhookResponseStatus, ConversionError>
fn try_from( value: String, ) -> Result<StripeWebhookResponseStatus, ConversionError>
Performs the conversion.
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