pub enum TraceIdFormat {
TinyFlake,
Uuid,
}Expand description
Trace ID format selection.
Controls how trace IDs are generated for request tracing.
§Formats
-
TinyFlake (default): 11-character Base58 encoded ID with time prefix. Operator-friendly format designed for easy copying and log correlation. Example:
k7BxR3nVp2Ym -
UUID: Standard 36-character UUID v4 format with dashes. Guaranteed unique, widely compatible. Example:
550e8400-e29b-41d4-a716-446655440000
§Configuration
server {
trace-id-format "tinyflake" // or "uuid"
}Variants§
TinyFlake
TinyFlake format: 11-char Base58, time-prefixed (default)
Uuid
UUID v4 format: 36-char with dashes
Implementations§
Source§impl TraceIdFormat
impl TraceIdFormat
Sourcepub fn from_str_loose(s: &str) -> Self
pub fn from_str_loose(s: &str) -> Self
Parse format from string (case-insensitive)
Trait Implementations§
Source§impl Clone for TraceIdFormat
impl Clone for TraceIdFormat
Source§fn clone(&self) -> TraceIdFormat
fn clone(&self) -> TraceIdFormat
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 moreSource§impl Debug for TraceIdFormat
impl Debug for TraceIdFormat
Source§impl Default for TraceIdFormat
impl Default for TraceIdFormat
Source§fn default() -> TraceIdFormat
fn default() -> TraceIdFormat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TraceIdFormat
impl<'de> Deserialize<'de> for TraceIdFormat
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
Source§impl Display for TraceIdFormat
impl Display for TraceIdFormat
Source§impl PartialEq for TraceIdFormat
impl PartialEq for TraceIdFormat
Source§impl Serialize for TraceIdFormat
impl Serialize for TraceIdFormat
impl Copy for TraceIdFormat
impl Eq for TraceIdFormat
impl StructuralPartialEq for TraceIdFormat
Auto Trait Implementations§
impl Freeze for TraceIdFormat
impl RefUnwindSafe for TraceIdFormat
impl Send for TraceIdFormat
impl Sync for TraceIdFormat
impl Unpin for TraceIdFormat
impl UnwindSafe for TraceIdFormat
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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