pub struct EventDelivery {
pub delivery_id: Uuid,
pub subscription_id: Uuid,
pub event: ChangeEvent,
pub lease: Lease,
pub attempts: i64,
}Fields§
§delivery_id: Uuid§subscription_id: Uuid§event: ChangeEvent§lease: Lease§attempts: i64Trait Implementations§
Source§impl Clone for EventDelivery
impl Clone for EventDelivery
Source§fn clone(&self) -> EventDelivery
fn clone(&self) -> EventDelivery
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 EventDelivery
impl Debug for EventDelivery
Source§impl<'de> Deserialize<'de> for EventDelivery
impl<'de> Deserialize<'de> for EventDelivery
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
Auto Trait Implementations§
impl Freeze for EventDelivery
impl RefUnwindSafe for EventDelivery
impl Send for EventDelivery
impl Sync for EventDelivery
impl Unpin for EventDelivery
impl UnsafeUnpin for EventDelivery
impl UnwindSafe for EventDelivery
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