Struct tracing_core::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) -> Self
pub fn from_u64(u: u64) -> Self
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) -> Self
pub const fn from_non_zero_u64(id: NonZeroU64) -> Self
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
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 · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more