Struct cov::raw::Source
[−]
[src]
pub struct Source {
pub name: Symbol,
pub filename: Symbol,
pub line: u32,
}Source location of a function.
Fields
name: Symbol
Function name
filename: Symbol
File name
line: u32
Line number
Trait Implementations
impl Copy for Source[src]
impl Clone for Source[src]
fn clone(&self) -> Source[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for Source[src]
fn eq(&self, __arg_0: &Source) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Source) -> bool[src]
This method tests for !=.
impl Eq for Source[src]
impl Hash for Source[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for Source[src]
impl Default for Source[src]
impl SerializeWithInterner for Source[src]
fn serialize_with_interner<S: Serializer>(
&self,
serializer: S,
interner: &Interner
) -> Result<S::Ok, S::Error>[src]
&self,
serializer: S,
interner: &Interner
) -> Result<S::Ok, S::Error>
Serializes this value with help from an [Interner] that writes [Symbol]s as strings. Read more
fn with_interner<'si>(
&self,
interner: &'si Interner
) -> WithInterner<'si, &Self>[src]
&self,
interner: &'si Interner
) -> WithInterner<'si, &Self>
Adorns this object with a string interner. Read more