pub struct StoredSpan {
pub id: String,
pub name: String,
pub parent_id: Option<String>,
pub status: Option<String>,
pub error: Option<String>,
pub start_time: DateTime<Utc>,
pub end_time: Option<DateTime<Utc>>,
pub attributes: Value,
}Fields§
§id: String§name: String§parent_id: Option<String>§status: Option<String>§error: Option<String>§start_time: DateTime<Utc>§end_time: Option<DateTime<Utc>>§attributes: ValueTrait Implementations§
Source§impl Clone for StoredSpan
impl Clone for StoredSpan
Source§fn clone(&self) -> StoredSpan
fn clone(&self) -> StoredSpan
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 moreSource§impl Debug for StoredSpan
impl Debug for StoredSpan
Source§impl<'de> Deserialize<'de> for StoredSpan
impl<'de> Deserialize<'de> for StoredSpan
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StoredSpan
impl PartialEq for StoredSpan
Source§impl Serialize for StoredSpan
impl Serialize for StoredSpan
impl Eq for StoredSpan
impl StructuralPartialEq for StoredSpan
Auto Trait Implementations§
impl Freeze for StoredSpan
impl RefUnwindSafe for StoredSpan
impl Send for StoredSpan
impl Sync for StoredSpan
impl Unpin for StoredSpan
impl UnwindSafe for StoredSpan
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