Struct sp_tracing::span::Id
source · [−]pub struct Id(_);
Expand description
Identifies a span within the context of a subscriber.
They are generated by Subscriber
s for each span as it is created, by
the new_span
trait method. See the documentation for that method for
more information on span ID generation.
Implementations
sourceimpl Id
impl Id
sourcepub fn from_u64(u: u64) -> Id
pub fn from_u64(u: u64) -> Id
Constructs a new span ID from the given u64
.
Note: Span IDs must be greater than zero.
Panics
- If the provided
u64
is 0
sourcepub const fn from_non_zero_u64(id: NonZeroU64) -> Id
pub const fn from_non_zero_u64(id: NonZeroU64) -> Id
Constructs a new span ID from the given NonZeroU64
.
Unlike Id::from_u64
, this will never panic.
sourcepub const fn into_non_zero_u64(&self) -> NonZeroU64
pub const fn into_non_zero_u64(&self) -> NonZeroU64
Returns the span’s ID as a NonZeroU64
.
Trait Implementations
sourceimpl<'a> AsSerde<'a> for Id
impl<'a> AsSerde<'a> for Id
type Serializable = SerializeId<'a>
sourcepub fn as_serde(&'a self) -> <Id as AsSerde<'a>>::Serializable
pub fn as_serde(&'a self) -> <Id as AsSerde<'a>>::Serializable
as_serde
borrows a tracing
value and returns the serialized value.
impl Eq for Id
impl StructuralEq for Id
impl StructuralPartialEq for Id
Auto Trait Implementations
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more