pub enum InboundTrace {
Inherited,
Created,
ReplacedInvalid,
}Expand description
How an external request’s trace identifier was selected.
Variants§
Inherited
A non-zero, 32-character hexadecimal identifier was inherited.
Created
No identifier was supplied, so Saddle created one.
ReplacedInvalid
The supplied identifier was invalid, so Saddle created a safe replacement.
Trait Implementations§
Source§impl Clone for InboundTrace
impl Clone for InboundTrace
Source§fn clone(&self) -> InboundTrace
fn clone(&self) -> InboundTrace
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 moreimpl Copy for InboundTrace
Source§impl Debug for InboundTrace
impl Debug for InboundTrace
impl Eq for InboundTrace
Source§impl PartialEq for InboundTrace
impl PartialEq for InboundTrace
impl StructuralPartialEq for InboundTrace
Auto Trait Implementations§
impl Freeze for InboundTrace
impl RefUnwindSafe for InboundTrace
impl Send for InboundTrace
impl Sync for InboundTrace
impl Unpin for InboundTrace
impl UnsafeUnpin for InboundTrace
impl UnwindSafe for InboundTrace
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