pub struct StartSpanParameters {
pub timestamp: Datetime,
pub span_id: SpanId,
pub parent: Option<SpanId>,
pub linked_context: Option<SpanId>,
pub attributes: Vec<Attribute>,
}
Fields§
§timestamp: Datetime
§span_id: SpanId
§parent: Option<SpanId>
§linked_context: Option<SpanId>
§attributes: Vec<Attribute>
Trait Implementations§
Source§impl Clone for StartSpanParameters
impl Clone for StartSpanParameters
Source§fn clone(&self) -> StartSpanParameters
fn clone(&self) -> StartSpanParameters
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for StartSpanParameters
impl RefUnwindSafe for StartSpanParameters
impl Send for StartSpanParameters
impl Sync for StartSpanParameters
impl Unpin for StartSpanParameters
impl UnwindSafe for StartSpanParameters
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more