Skip to main content

RequestSpan

Struct RequestSpan 

Source
pub struct RequestSpan { /* private fields */ }
Expand description

Request span for tracking HTTP/RPC requests

Implementations§

Source§

impl RequestSpan

Source

pub fn new(method: impl Into<String>, request_id: String) -> Self

Create a new request span

Source

pub fn request_id(&self) -> &str

Get the request ID

Source

pub fn trace_id(&self) -> &str

Get the trace ID

Source

pub fn span_id(&self) -> &str

Get the span ID

Source

pub fn set_attribute( &mut self, key: impl Into<String>, value: impl Into<SpanValue>, )

Set an attribute

Source

pub fn add_event(&mut self, name: impl Into<String>)

Add an event

Source

pub fn set_error(&mut self, error_message: impl Into<String>)

Set status to error

Source

pub fn finish(self) -> Span

Finish the span successfully

Source

pub fn finish_with_error(self, error: impl Into<String>) -> Span

Finish the span with an error

Source

pub fn span(&self) -> &Span

Get the underlying span

Source

pub fn span_mut(&mut self) -> &mut Span

Get mutable access to the underlying span

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V