pub struct InlineContextFrame {
pub callee: String,
pub depth: usize,
pub event_id: u64,
}Expand description
A single frame in the inline context stack.
Fields§
§callee: StringThe function being inlined at this frame.
depth: usizeThe call-site depth at which this inlining occurred.
event_id: u64Unique ID for this inlining event.
Trait Implementations§
Source§impl Clone for InlineContextFrame
impl Clone for InlineContextFrame
Source§fn clone(&self) -> InlineContextFrame
fn clone(&self) -> InlineContextFrame
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for InlineContextFrame
impl RefUnwindSafe for InlineContextFrame
impl Send for InlineContextFrame
impl Sync for InlineContextFrame
impl Unpin for InlineContextFrame
impl UnsafeUnpin for InlineContextFrame
impl UnwindSafe for InlineContextFrame
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