pub struct ArtifactInlineFrame {
pub evidence_kind: ArtifactSourceLocationEvidenceKind,
pub source: String,
pub line: Option<u32>,
pub column: Option<u32>,
}Expand description
One source frame associated with an inlined artifact symbol.
Fields§
§evidence_kind: ArtifactSourceLocationEvidenceKindDebug metadata family that established this location.
source: StringSource file or source-map URL supplied by debug metadata.
line: Option<u32>One-based source line, when supplied.
column: Option<u32>One-based source column, when supplied.
Trait Implementations§
Source§impl Clone for ArtifactInlineFrame
impl Clone for ArtifactInlineFrame
Source§fn clone(&self) -> ArtifactInlineFrame
fn clone(&self) -> ArtifactInlineFrame
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 ArtifactInlineFrame
impl Debug for ArtifactInlineFrame
Source§impl<'de> Deserialize<'de> for ArtifactInlineFrame
impl<'de> Deserialize<'de> for ArtifactInlineFrame
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 ArtifactInlineFrame
Source§impl PartialEq for ArtifactInlineFrame
impl PartialEq for ArtifactInlineFrame
Source§impl Serialize for ArtifactInlineFrame
impl Serialize for ArtifactInlineFrame
impl StructuralPartialEq for ArtifactInlineFrame
Auto Trait Implementations§
impl Freeze for ArtifactInlineFrame
impl RefUnwindSafe for ArtifactInlineFrame
impl Send for ArtifactInlineFrame
impl Sync for ArtifactInlineFrame
impl Unpin for ArtifactInlineFrame
impl UnsafeUnpin for ArtifactInlineFrame
impl UnwindSafe for ArtifactInlineFrame
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.