Struct fluvio_future::tracing::span::Id [−][src]
pub struct Id(_);
Identifies a span within the context of a subscriber.
They are generated by Subscribers 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
impl Id[src]
impl Id[src]pub fn from_u64(u: u64) -> Id[src]
pub fn from_u64(u: u64) -> Id[src]Constructs a new span ID from the given u64.
ⓘNote
Note: Span IDs must be greater than zero.
Panics
- If the provided
u64is 0
pub const fn from_non_zero_u64(id: NonZeroU64) -> Id[src]
pub const fn from_non_zero_u64(id: NonZeroU64) -> Id[src]Constructs a new span ID from the given NonZeroU64.
Unlike Id::from_u64, this will never panic.
pub const fn into_non_zero_u64(&self) -> NonZeroU64[src]
pub const fn into_non_zero_u64(&self) -> NonZeroU64[src]Returns the span’s ID as a NonZeroU64.
Trait Implementations
impl Eq for Id[src]
impl StructuralEq for Id[src]
impl StructuralPartialEq for Id[src]
Auto Trait Implementations
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T[src]
impl<T> Instrument for T[src]fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;[src]
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;[src]Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;[src]
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;[src]impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more