pub struct EnqueueSource {
pub schema_version: u8,
pub mission_id: String,
pub producer: String,
pub external_ref: String,
pub created_unix_secs: u64,
}Fields§
§schema_version: u8§mission_id: String§producer: String§external_ref: String§created_unix_secs: u64Receipt-local clock for recovering a crash between this atomic write and queue visibility. Never reuse an older external-system claim time for that decision: planning may legitimately take longer than its TTL.
Trait Implementations§
Source§impl Clone for EnqueueSource
impl Clone for EnqueueSource
Source§fn clone(&self) -> EnqueueSource
fn clone(&self) -> EnqueueSource
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 EnqueueSource
impl Debug for EnqueueSource
Source§impl<'de> Deserialize<'de> for EnqueueSource
impl<'de> Deserialize<'de> for EnqueueSource
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 Eq for EnqueueSource
Source§impl PartialEq for EnqueueSource
impl PartialEq for EnqueueSource
Source§impl Serialize for EnqueueSource
impl Serialize for EnqueueSource
impl StructuralPartialEq for EnqueueSource
Auto Trait Implementations§
impl Freeze for EnqueueSource
impl RefUnwindSafe for EnqueueSource
impl Send for EnqueueSource
impl Sync for EnqueueSource
impl Unpin for EnqueueSource
impl UnsafeUnpin for EnqueueSource
impl UnwindSafe for EnqueueSource
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