pub trait CallMetaDataTraitConst {
    fn as_raw_CallMetaData(&self) -> *const c_void;

    fn file(&self) -> String { ... }
    fn line(&self) -> size_t { ... }
    fn function(&self) -> String { ... }
    fn is_known(&self) -> bool { ... }
}
Expand description

Optional information about a location in Code.

Required Methods

Provided Methods

Whether *this holds actual data.

Implementors