pub struct WireBridgeEnvelopeInput<T> {
pub session_id: String,
pub envelope_type: WireBridgeEnvelopeType,
pub seq: u64,
pub cursor: u64,
pub payload: Option<WireBridgePayload<T>>,
pub idempotency_key: Option<String>,
pub attempt: u32,
pub max_attempts: u32,
pub timestamp_ms: Option<u64>,
pub ack_for_seq: Option<u64>,
pub request_id: Option<String>,
}Expand description
WireBridgeEnvelopeInput data container.
Fields§
§session_id: Stringsession_id field for session id.
envelope_type: WireBridgeEnvelopeTypeenvelope_type field for envelope type.
seq: u64seq field for seq.
cursor: u64cursor field for cursor.
payload: Option<WireBridgePayload<T>>payload field for payload.
idempotency_key: Option<String>idempotency_key field for idempotency key.
attempt: u32attempt field for attempt.
max_attempts: u32max_attempts field for max attempts.
timestamp_ms: Option<u64>timestamp_ms field for timestamp ms.
ack_for_seq: Option<u64>ack_for_seq field for ack for seq.
request_id: Option<String>request_id field for request id.
Trait Implementations§
Source§impl<T: Clone> Clone for WireBridgeEnvelopeInput<T>
impl<T: Clone> Clone for WireBridgeEnvelopeInput<T>
Source§fn clone(&self) -> WireBridgeEnvelopeInput<T>
fn clone(&self) -> WireBridgeEnvelopeInput<T>
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 moreAuto Trait Implementations§
impl<T> Freeze for WireBridgeEnvelopeInput<T>where
T: Freeze,
impl<T> RefUnwindSafe for WireBridgeEnvelopeInput<T>where
T: RefUnwindSafe,
impl<T> Send for WireBridgeEnvelopeInput<T>where
T: Send,
impl<T> Sync for WireBridgeEnvelopeInput<T>where
T: Sync,
impl<T> Unpin for WireBridgeEnvelopeInput<T>where
T: Unpin,
impl<T> UnsafeUnpin for WireBridgeEnvelopeInput<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for WireBridgeEnvelopeInput<T>where
T: UnwindSafe,
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