Struct rbspy_oncpu::StackFrame
source · [−]pub struct StackFrame {
pub name: String,
pub relative_path: String,
pub absolute_path: Option<String>,
pub lineno: u32,
}
Fields
name: String
relative_path: String
absolute_path: Option<String>
lineno: u32
Implementations
sourceimpl StackFrame
impl StackFrame
pub fn path(&self) -> &str
pub fn unknown_c_function() -> StackFrame
Trait Implementations
sourceimpl Clone for StackFrame
impl Clone for StackFrame
sourcefn clone(&self) -> StackFrame
fn clone(&self) -> StackFrame
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StackFrame
impl Debug for StackFrame
sourceimpl<'de> Deserialize<'de> for StackFrame
impl<'de> Deserialize<'de> for StackFrame
sourcefn 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
sourceimpl Display for StackFrame
impl Display for StackFrame
sourceimpl Hash for StackFrame
impl Hash for StackFrame
sourceimpl Ord for StackFrame
impl Ord for StackFrame
sourceimpl PartialEq<StackFrame> for StackFrame
impl PartialEq<StackFrame> for StackFrame
sourcefn eq(&self, other: &StackFrame) -> bool
fn eq(&self, other: &StackFrame) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &StackFrame) -> bool
fn ne(&self, other: &StackFrame) -> bool
This method tests for !=
.
sourceimpl PartialOrd<StackFrame> for StackFrame
impl PartialOrd<StackFrame> for StackFrame
sourcefn partial_cmp(&self, other: &StackFrame) -> Option<Ordering>
fn partial_cmp(&self, other: &StackFrame) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Serialize for StackFrame
impl Serialize for StackFrame
impl Eq for StackFrame
impl StructuralEq for StackFrame
impl StructuralPartialEq for StackFrame
Auto Trait Implementations
impl RefUnwindSafe for StackFrame
impl Send for StackFrame
impl Sync for StackFrame
impl Unpin for StackFrame
impl UnwindSafe for StackFrame
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.