pub struct ManagedSpanRecord {
pub id: String,
pub target: String,
pub open_line: usize,
pub close_line: usize,
pub ideal_checksum: String,
pub package: String,
pub export: String,
pub source_checksum: String,
pub silenced: bool,
}Fields§
§id: String§target: String§open_line: usize§close_line: usize§ideal_checksum: String§package: String§export: String§source_checksum: String§silenced: boolTrait Implementations§
Source§impl Clone for ManagedSpanRecord
impl Clone for ManagedSpanRecord
Source§fn clone(&self) -> ManagedSpanRecord
fn clone(&self) -> ManagedSpanRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ManagedSpanRecord
impl Debug for ManagedSpanRecord
Source§impl<'de> Deserialize<'de> for ManagedSpanRecord
impl<'de> Deserialize<'de> for ManagedSpanRecord
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
impl Eq for ManagedSpanRecord
Source§impl PartialEq for ManagedSpanRecord
impl PartialEq for ManagedSpanRecord
Source§impl Serialize for ManagedSpanRecord
impl Serialize for ManagedSpanRecord
impl StructuralPartialEq for ManagedSpanRecord
Auto Trait Implementations§
impl Freeze for ManagedSpanRecord
impl RefUnwindSafe for ManagedSpanRecord
impl Send for ManagedSpanRecord
impl Sync for ManagedSpanRecord
impl Unpin for ManagedSpanRecord
impl UnsafeUnpin for ManagedSpanRecord
impl UnwindSafe for ManagedSpanRecord
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