pub struct OutboxItem {
pub id: String,
pub tenant_id: String,
pub subject_id: String,
pub channel: String,
pub recipient: String,
pub notification: Notification,
pub attempts: u32,
pub lease_version: i64,
}Fields§
§id: String§tenant_id: String§subject_id: String§channel: String§recipient: String§notification: Notification§attempts: u32§lease_version: i64Trait Implementations§
Source§impl Clone for OutboxItem
impl Clone for OutboxItem
Source§fn clone(&self) -> OutboxItem
fn clone(&self) -> OutboxItem
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 OutboxItem
impl Debug for OutboxItem
Source§impl PartialEq for OutboxItem
impl PartialEq for OutboxItem
impl StructuralPartialEq for OutboxItem
Auto Trait Implementations§
impl Freeze for OutboxItem
impl RefUnwindSafe for OutboxItem
impl Send for OutboxItem
impl Sync for OutboxItem
impl Unpin for OutboxItem
impl UnsafeUnpin for OutboxItem
impl UnwindSafe for OutboxItem
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