pub struct TracedEntryPoint {
pub entry_point_with_params: EntryPointWithTracingParams,
pub detection_block_hash: BlockHash,
pub tracing_result: TracingResult,
}Expand description
Represents a traced entry point and the results of the tracing operation.
Fields§
§entry_point_with_params: EntryPointWithTracingParamsThe combined entry point and tracing params that was traced
detection_block_hash: BlockHashThe block hash of the block that the entry point was traced on.
tracing_result: TracingResultThe results of the tracing operation
Implementations§
Source§impl TracedEntryPoint
impl TracedEntryPoint
pub fn new( entry_point_with_params: EntryPointWithTracingParams, detection_block_hash: BlockHash, result: TracingResult, ) -> Self
pub fn entry_point_id(&self) -> String
Trait Implementations§
Source§impl Clone for TracedEntryPoint
impl Clone for TracedEntryPoint
Source§fn clone(&self) -> TracedEntryPoint
fn clone(&self) -> TracedEntryPoint
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 moreSource§impl Debug for TracedEntryPoint
impl Debug for TracedEntryPoint
Source§impl DeepSizeOf for TracedEntryPoint
impl DeepSizeOf for TracedEntryPoint
Source§fn deep_size_of_children(&self, context: &mut Context) -> usize
fn deep_size_of_children(&self, context: &mut Context) -> usize
Returns an estimation of the heap-managed storage of this object.
This does not include the size of the object itself. Read more
Source§fn deep_size_of(&self) -> usize
fn deep_size_of(&self) -> usize
Returns an estimation of a total size of memory owned by the
object, including heap-managed storage. Read more
Source§impl Display for TracedEntryPoint
impl Display for TracedEntryPoint
Source§impl PartialEq for TracedEntryPoint
impl PartialEq for TracedEntryPoint
impl StructuralPartialEq for TracedEntryPoint
Auto Trait Implementations§
impl !Freeze for TracedEntryPoint
impl RefUnwindSafe for TracedEntryPoint
impl Send for TracedEntryPoint
impl Sync for TracedEntryPoint
impl Unpin for TracedEntryPoint
impl UnwindSafe for TracedEntryPoint
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