[−][src]Struct opentelemetry::trace::SpanId
SpanId is an 8-byte value which uniquely identifies a given span within a trace
The actual u64
value is wrapped in a tuple struct in order to leverage the newtype pattern
Implementations
impl SpanId
[src]
pub fn invalid() -> Self
[src]
Construct a new invalid (zero-valued) SpanId
pub fn from_u64(item: u64) -> Self
[src]
Convert from u64 to SpanId
pub fn to_u64(self) -> u64
[src]
Convert from SpanId to u64
pub fn to_hex(self) -> String
[src]
Convert from SpanId to Hexadecimal String
pub fn to_byte_array(self) -> [u8; 8]
[src]
Convert from SpanId to Big-Endian byte array
pub fn from_hex(hex: &str) -> Self
[src]
Construct a new SpanId from Hexadecimal String
pub fn from_byte_array(byte_array: [u8; 8]) -> Self
[src]
Construct a new SpanId from Big-Endian byte array
Trait Implementations
impl Clone for SpanId
[src]
impl Copy for SpanId
[src]
impl Debug for SpanId
[src]
impl Eq for SpanId
[src]
impl Hash for SpanId
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl PartialEq<SpanId> for SpanId
[src]
impl StructuralEq for SpanId
[src]
impl StructuralPartialEq for SpanId
[src]
Auto Trait Implementations
impl RefUnwindSafe for SpanId
impl Send for SpanId
impl Sync for SpanId
impl Unpin for SpanId
impl UnwindSafe for SpanId
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,