pub struct Traceability {
pub mappings: Vec<TraceMapping>,
pub orphaned_specs: Vec<String>,
pub untraced_code: Vec<String>,
}Expand description
Layer 2: how the corpus maps onto the code, and what is unmapped.
Fields§
§mappings: Vec<TraceMapping>§orphaned_specs: Vec<String>Specs claiming code that resolves to no location.
untraced_code: Vec<String>Package paths with no governing spec.
Trait Implementations§
Source§impl Clone for Traceability
impl Clone for Traceability
Source§fn clone(&self) -> Traceability
fn clone(&self) -> Traceability
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 Traceability
impl Debug for Traceability
Source§impl<'de> Deserialize<'de> for Traceability
impl<'de> Deserialize<'de> for Traceability
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 Traceability
impl PartialEq for Traceability
Source§fn eq(&self, other: &Traceability) -> bool
fn eq(&self, other: &Traceability) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Traceability
impl Serialize for Traceability
impl StructuralPartialEq for Traceability
Auto Trait Implementations§
impl Freeze for Traceability
impl RefUnwindSafe for Traceability
impl Send for Traceability
impl Sync for Traceability
impl Unpin for Traceability
impl UnsafeUnpin for Traceability
impl UnwindSafe for Traceability
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