pub struct HandleStripeWebhookResponse {
pub received: bool,
pub handled: bool,
pub action: Option<String>,
pub duplicate: Option<bool>,
}Expand description
HandleStripeWebhookResponse model.
Fields§
§received: bool§handled: bool§action: Option<String>§duplicate: Option<bool>Trait Implementations§
Source§impl Clone for HandleStripeWebhookResponse
impl Clone for HandleStripeWebhookResponse
Source§fn clone(&self) -> HandleStripeWebhookResponse
fn clone(&self) -> HandleStripeWebhookResponse
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 moreSource§impl Debug for HandleStripeWebhookResponse
impl Debug for HandleStripeWebhookResponse
Source§impl Default for HandleStripeWebhookResponse
impl Default for HandleStripeWebhookResponse
Source§fn default() -> HandleStripeWebhookResponse
fn default() -> HandleStripeWebhookResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HandleStripeWebhookResponse
impl<'de> Deserialize<'de> for HandleStripeWebhookResponse
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 StructuralPartialEq for HandleStripeWebhookResponse
Auto Trait Implementations§
impl Freeze for HandleStripeWebhookResponse
impl RefUnwindSafe for HandleStripeWebhookResponse
impl Send for HandleStripeWebhookResponse
impl Sync for HandleStripeWebhookResponse
impl Unpin for HandleStripeWebhookResponse
impl UnsafeUnpin for HandleStripeWebhookResponse
impl UnwindSafe for HandleStripeWebhookResponse
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