pub struct MessageAttemptRecoveredEvent {
pub data: Box<MessageAttemptRecoveredEventData>,
pub type: Type,
}
Expand description
MessageAttemptRecoveredEvent : Sent on a successful dispatch after an earlier failure op webhook has already been sent.
Fields§
§data: Box<MessageAttemptRecoveredEventData>
§type: Type
Implementations§
Source§impl MessageAttemptRecoveredEvent
impl MessageAttemptRecoveredEvent
Sourcepub fn new(
data: MessageAttemptRecoveredEventData,
type: Type,
) -> MessageAttemptRecoveredEvent
pub fn new( data: MessageAttemptRecoveredEventData, type: Type, ) -> MessageAttemptRecoveredEvent
Sent on a successful dispatch after an earlier failure op webhook has already been sent.
Trait Implementations§
Source§impl Clone for MessageAttemptRecoveredEvent
impl Clone for MessageAttemptRecoveredEvent
Source§fn clone(&self) -> MessageAttemptRecoveredEvent
fn clone(&self) -> MessageAttemptRecoveredEvent
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 Debug for MessageAttemptRecoveredEvent
impl Debug for MessageAttemptRecoveredEvent
Source§impl Default for MessageAttemptRecoveredEvent
impl Default for MessageAttemptRecoveredEvent
Source§fn default() -> MessageAttemptRecoveredEvent
fn default() -> MessageAttemptRecoveredEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MessageAttemptRecoveredEvent
impl<'de> Deserialize<'de> for MessageAttemptRecoveredEvent
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 MessageAttemptRecoveredEvent
impl PartialEq for MessageAttemptRecoveredEvent
Source§fn eq(&self, other: &MessageAttemptRecoveredEvent) -> bool
fn eq(&self, other: &MessageAttemptRecoveredEvent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MessageAttemptRecoveredEvent
Auto Trait Implementations§
impl Freeze for MessageAttemptRecoveredEvent
impl RefUnwindSafe for MessageAttemptRecoveredEvent
impl Send for MessageAttemptRecoveredEvent
impl Sync for MessageAttemptRecoveredEvent
impl Unpin for MessageAttemptRecoveredEvent
impl UnwindSafe for MessageAttemptRecoveredEvent
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