pub struct SpanView {
pub id: String,
pub ancestors: Vec<AncestorView>,
pub created_at: Timestamp,
pub closed_at: Option<Timestamp>,
pub target: String,
pub name: String,
pub level: i32,
pub file: Option<String>,
pub attributes: Vec<AttributeView>,
}Fields§
§id: String§ancestors: Vec<AncestorView>§created_at: Timestamp§closed_at: Option<Timestamp>§target: String§name: String§level: i32§file: Option<String>§attributes: Vec<AttributeView>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SpanView
impl RefUnwindSafe for SpanView
impl Send for SpanView
impl Sync for SpanView
impl Unpin for SpanView
impl UnwindSafe for SpanView
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