pub enum OutboxIdentity {
Upload {
table: String,
row_id: String,
column: String,
row_stamp: String,
},
Stored {
operation: &'static str,
stored: String,
},
}Variants§
Auto Trait Implementations§
impl Freeze for OutboxIdentity
impl RefUnwindSafe for OutboxIdentity
impl Send for OutboxIdentity
impl Sync for OutboxIdentity
impl Unpin for OutboxIdentity
impl UnsafeUnpin for OutboxIdentity
impl UnwindSafe for OutboxIdentity
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