pub struct InlineTraceEntry {
pub sweep: u32,
pub caller: String,
pub callee: String,
pub decision: String,
pub callee_size: u64,
pub did_inline: bool,
}Fields§
§sweep: u32§caller: String§callee: String§decision: String§callee_size: u64§did_inline: boolImplementations§
Trait Implementations§
Source§impl Clone for InlineTraceEntry
impl Clone for InlineTraceEntry
Source§fn clone(&self) -> InlineTraceEntry
fn clone(&self) -> InlineTraceEntry
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 InlineTraceEntry
impl RefUnwindSafe for InlineTraceEntry
impl Send for InlineTraceEntry
impl Sync for InlineTraceEntry
impl Unpin for InlineTraceEntry
impl UnsafeUnpin for InlineTraceEntry
impl UnwindSafe for InlineTraceEntry
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