Struct symbolic_ppdb::LineInfo
source · pub struct LineInfo<'data> {
pub line: u32,
pub file_name: &'data str,
pub file_lang: Language,
}Expand description
Line information for a given IL offset in a function.
Fields§
§line: u32The line in the source file.
file_name: &'data strThe source file’s name.
file_lang: LanguageThe source language.
Trait Implementations§
source§impl<'data> PartialEq<LineInfo<'data>> for LineInfo<'data>
impl<'data> PartialEq<LineInfo<'data>> for LineInfo<'data>
impl<'data> Copy for LineInfo<'data>
impl<'data> Eq for LineInfo<'data>
impl<'data> StructuralEq for LineInfo<'data>
impl<'data> StructuralPartialEq for LineInfo<'data>
Auto Trait Implementations§
impl<'data> RefUnwindSafe for LineInfo<'data>
impl<'data> Send for LineInfo<'data>
impl<'data> Sync for LineInfo<'data>
impl<'data> Unpin for LineInfo<'data>
impl<'data> UnwindSafe for LineInfo<'data>
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.