pub struct TimestampStack {
pub conf_flags: u8,
pub stack: Vec<Interception>,
}Expand description
A stack of interception timestamps carried as a message extension.
Flags:
- S: Send If S==1 then the send interception point is activated.
- R: Route If R==1 then the route interception point is activated.
- E: Receive If E==1 then the receive interception point is activated.
- X: Reserved
7 6 5 4 3 2 1 0
+-+-+-+-+-+-+-+-+
|X|X|X|X|X|E|R|S|
+---------------+
~ count: zint ~
+---------------+
~ [Interception] ~
+---------------+Fields§
§conf_flags: u8Bitmask of which interception points are activated.
stack: Vec<Interception>Ordered list of interceptions collected along the message path.
Trait Implementations§
Source§impl Clone for TimestampStack
impl Clone for TimestampStack
Source§fn clone(&self) -> TimestampStack
fn clone(&self) -> TimestampStack
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 TimestampStack
impl Debug for TimestampStack
impl Eq for TimestampStack
Source§impl PartialEq for TimestampStack
impl PartialEq for TimestampStack
impl StructuralPartialEq for TimestampStack
Auto Trait Implementations§
impl Freeze for TimestampStack
impl RefUnwindSafe for TimestampStack
impl Send for TimestampStack
impl Sync for TimestampStack
impl Unpin for TimestampStack
impl UnsafeUnpin for TimestampStack
impl UnwindSafe for TimestampStack
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more