pub struct SnapshotFrame {
pub kind: String,
pub location: Option<String>,
pub temps: usize,
}Expand description
One summarized call frame.
Fields§
§kind: StringFrame kind: root / function / tunnel / thread / external / eval.
location: Option<String>Nearest named container for this frame, if resolvable.
temps: usizeNumber of temporaries in this frame.
Trait Implementations§
Source§impl Clone for SnapshotFrame
impl Clone for SnapshotFrame
Source§fn clone(&self) -> SnapshotFrame
fn clone(&self) -> SnapshotFrame
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 SnapshotFrame
impl Debug for SnapshotFrame
Source§impl<'de> Deserialize<'de> for SnapshotFrame
impl<'de> Deserialize<'de> for SnapshotFrame
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 SnapshotFrame
Source§impl PartialEq for SnapshotFrame
impl PartialEq for SnapshotFrame
Source§impl Serialize for SnapshotFrame
impl Serialize for SnapshotFrame
impl StructuralPartialEq for SnapshotFrame
Auto Trait Implementations§
impl Freeze for SnapshotFrame
impl RefUnwindSafe for SnapshotFrame
impl Send for SnapshotFrame
impl Sync for SnapshotFrame
impl Unpin for SnapshotFrame
impl UnsafeUnpin for SnapshotFrame
impl UnwindSafe for SnapshotFrame
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