pub struct Aggregate<T>(pub T);
Expand description
Groups multiple tracers into a tuple and dispatches each call to them in serial.
Tuple Fields§
§0: T
A tuple of child tracers to execute in serial.
-Trait Implementations§
source§impl Tracer for Aggregate<()>
impl Tracer for Aggregate<()>
§type CycleContext = ()
type CycleContext = ()
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = ()
type PrepareEallocShardsContext = ()
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = ()
type FlushEallocContext = ()
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = ()
type RunSendableContext = ()
start_run_sendable
-to end_run_sendable
.Trait Implementations§
source§impl Tracer for Aggregate<()>
impl Tracer for Aggregate<()>
§type CycleContext = ()
type CycleContext = ()
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = ()
type PrepareEallocShardsContext = ()
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = ()
type FlushEallocContext = ()
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = ()
type RunSendableContext = ()
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = ()
type RunUnsendableContext = ()
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = ()
type RunUnsendableContext = ()
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0> Tracer for Aggregate<(Item0,)>where
- Item0: Tracer,
impl<Item0> Tracer for Aggregate<(Item0,)>where
- Item0: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext,)
type CycleContext = (<Item0 as Tracer>::CycleContext,)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext,)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext,)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext,)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext,)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext,)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext,)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+)
fn start_run_sendable( +)
source§impl<Item0> Tracer for Aggregate<(Item0,)>where
+ Item0: Tracer,
impl<Item0> Tracer for Aggregate<(Item0,)>where
+ Item0: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext,)
type CycleContext = (<Item0 as Tracer>::CycleContext,)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext,)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext,)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext,)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext,)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext,)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext,)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext,)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext,)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext,)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext,)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1> Tracer for Aggregate<(Item0, Item1)>
impl<Item0, Item1> Tracer for Aggregate<(Item0, Item1)>
source§impl<Item0, Item1> Tracer for Aggregate<(Item0, Item1)>
impl<Item0, Item1> Tracer for Aggregate<(Item0, Item1)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item1: Tracer,
fn start_run_sendable( + Item1: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2> Tracer for Aggregate<(Item0, Item1, Item2)>
impl<Item0, Item1, Item2> Tracer for Aggregate<(Item0, Item1, Item2)>
source§impl<Item0, Item1, Item2> Tracer for Aggregate<(Item0, Item1, Item2)>
impl<Item0, Item1, Item2> Tracer for Aggregate<(Item0, Item1, Item2)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item2: Tracer,
fn start_run_sendable( + Item2: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3> Tracer for Aggregate<(Item0, Item1, Item2, Item3)>
impl<Item0, Item1, Item2, Item3> Tracer for Aggregate<(Item0, Item1, Item2, Item3)>
source§impl<Item0, Item1, Item2, Item3> Tracer for Aggregate<(Item0, Item1, Item2, Item3)>
impl<Item0, Item1, Item2, Item3> Tracer for Aggregate<(Item0, Item1, Item2, Item3)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item3: Tracer,
fn start_run_sendable( + Item3: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4)>
impl<Item0, Item1, Item2, Item3, Item4> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4)>
source§impl<Item0, Item1, Item2, Item3, Item4> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4)>
impl<Item0, Item1, Item2, Item3, Item4> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item4: Tracer,
fn start_run_sendable( + Item4: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5)>
impl<Item0, Item1, Item2, Item3, Item4, Item5> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5)>
impl<Item0, Item1, Item2, Item3, Item4, Item5> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item5: Tracer,
fn start_run_sendable( + Item5: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item6: Tracer,
fn start_run_sendable( + Item6: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item7: Tracer,
fn start_run_sendable( + Item7: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item8: Tracer,
fn start_run_sendable( + Item8: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item9: Tracer,
fn start_run_sendable( + Item9: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item10: Tracer,
fn start_run_sendable( + Item10: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item11: Tracer,
fn start_run_sendable( + Item11: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item12: Tracer,
fn start_run_sendable( + Item12: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item13: Tracer,
fn start_run_sendable( + Item13: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item14: Tracer,
fn start_run_sendable( + Item14: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item15: Tracer,
fn start_run_sendable( + Item15: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item16: Tracer,
fn start_run_sendable( + Item16: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item17: Tracer,
fn start_run_sendable( + Item17: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item18: Tracer,
fn start_run_sendable( + Item18: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item19: Tracer,
fn start_run_sendable( + Item19: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item20: Tracer,
fn start_run_sendable( + Item20: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item21: Tracer,
fn start_run_sendable( + Item21: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item22: Tracer,
fn start_run_sendable( + Item22: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item23: Tracer,
fn start_run_sendable( + Item23: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item24: Tracer,
fn start_run_sendable( + Item24: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item25: Tracer,
fn start_run_sendable( + Item25: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item26: Tracer,
fn start_run_sendable( + Item26: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item27: Tracer,
fn start_run_sendable( + Item27: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item28: Tracer,
fn start_run_sendable( + Item28: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext, <Item29 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext, <Item29 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext, <Item29 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext, <Item29 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext, <Item29 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext, <Item29 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext, <Item29 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext, <Item29 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item29: Tracer,
fn start_run_sendable( + Item29: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext, <Item29 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext, <Item29 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext, <Item29 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext, <Item29 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext, <Item29 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext, <Item29 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext, <Item29 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext, <Item29 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext, <Item29 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext, <Item29 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext, <Item29 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext, <Item29 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext, <Item29 as Tracer>::CycleContext, <Item30 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext, <Item29 as Tracer>::CycleContext, <Item30 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext, <Item29 as Tracer>::PrepareEallocShardsContext, <Item30 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext, <Item29 as Tracer>::PrepareEallocShardsContext, <Item30 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext, <Item29 as Tracer>::FlushEallocContext, <Item30 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext, <Item29 as Tracer>::FlushEallocContext, <Item30 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext, <Item29 as Tracer>::RunSendableContext, <Item30 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext, <Item29 as Tracer>::RunSendableContext, <Item30 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item30: Tracer,
fn start_run_sendable( + Item30: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext, <Item29 as Tracer>::CycleContext, <Item30 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext, <Item29 as Tracer>::CycleContext, <Item30 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext, <Item29 as Tracer>::PrepareEallocShardsContext, <Item30 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext, <Item29 as Tracer>::PrepareEallocShardsContext, <Item30 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext, <Item29 as Tracer>::FlushEallocContext, <Item30 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext, <Item29 as Tracer>::FlushEallocContext, <Item30 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext, <Item29 as Tracer>::RunSendableContext, <Item30 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext, <Item29 as Tracer>::RunSendableContext, <Item30 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext, <Item29 as Tracer>::RunUnsendableContext, <Item30 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext, <Item29 as Tracer>::RunUnsendableContext, <Item30 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext, <Item29 as Tracer>::RunUnsendableContext, <Item30 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext, <Item29 as Tracer>::RunUnsendableContext, <Item30 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30, Item31> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30, Item31)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30, Item31> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30, Item31)>
source§impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30, Item31> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30, Item31)>
impl<Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30, Item31> Tracer for Aggregate<(Item0, Item1, Item2, Item3, Item4, Item5, Item6, Item7, Item8, Item9, Item10, Item11, Item12, Item13, Item14, Item15, Item16, Item17, Item18, Item19, Item20, Item21, Item22, Item23, Item24, Item25, Item26, Item27, Item28, Item29, Item30, Item31)>
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext, <Item29 as Tracer>::CycleContext, <Item30 as Tracer>::CycleContext, <Item31 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext, <Item29 as Tracer>::CycleContext, <Item30 as Tracer>::CycleContext, <Item31 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext, <Item29 as Tracer>::PrepareEallocShardsContext, <Item30 as Tracer>::PrepareEallocShardsContext, <Item31 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext, <Item29 as Tracer>::PrepareEallocShardsContext, <Item30 as Tracer>::PrepareEallocShardsContext, <Item31 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
-to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext, <Item29 as Tracer>::FlushEallocContext, <Item30 as Tracer>::FlushEallocContext, <Item31 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext, <Item29 as Tracer>::FlushEallocContext, <Item30 as Tracer>::FlushEallocContext, <Item31 as Tracer>::FlushEallocContext)
start_flush_ealloc
-to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext, <Item29 as Tracer>::RunSendableContext, <Item30 as Tracer>::RunSendableContext, <Item31 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext, <Item29 as Tracer>::RunSendableContext, <Item30 as Tracer>::RunSendableContext, <Item31 as Tracer>::RunSendableContext)
start_run_sendable
-to end_run_sendable
.source§fn start_run_sendable(
+ Item31: Tracer,
fn start_run_sendable( + Item31: Tracer,
§type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext, <Item29 as Tracer>::CycleContext, <Item30 as Tracer>::CycleContext, <Item31 as Tracer>::CycleContext)
type CycleContext = (<Item0 as Tracer>::CycleContext, <Item1 as Tracer>::CycleContext, <Item2 as Tracer>::CycleContext, <Item3 as Tracer>::CycleContext, <Item4 as Tracer>::CycleContext, <Item5 as Tracer>::CycleContext, <Item6 as Tracer>::CycleContext, <Item7 as Tracer>::CycleContext, <Item8 as Tracer>::CycleContext, <Item9 as Tracer>::CycleContext, <Item10 as Tracer>::CycleContext, <Item11 as Tracer>::CycleContext, <Item12 as Tracer>::CycleContext, <Item13 as Tracer>::CycleContext, <Item14 as Tracer>::CycleContext, <Item15 as Tracer>::CycleContext, <Item16 as Tracer>::CycleContext, <Item17 as Tracer>::CycleContext, <Item18 as Tracer>::CycleContext, <Item19 as Tracer>::CycleContext, <Item20 as Tracer>::CycleContext, <Item21 as Tracer>::CycleContext, <Item22 as Tracer>::CycleContext, <Item23 as Tracer>::CycleContext, <Item24 as Tracer>::CycleContext, <Item25 as Tracer>::CycleContext, <Item26 as Tracer>::CycleContext, <Item27 as Tracer>::CycleContext, <Item28 as Tracer>::CycleContext, <Item29 as Tracer>::CycleContext, <Item30 as Tracer>::CycleContext, <Item31 as Tracer>::CycleContext)
start_cycle
to end_cycle
.source§fn start_cycle(&self) -> Self::CycleContext
fn start_cycle(&self) -> Self::CycleContext
source§fn end_cycle(&self, arg: Self::CycleContext)
fn end_cycle(&self, arg: Self::CycleContext)
§type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext, <Item29 as Tracer>::PrepareEallocShardsContext, <Item30 as Tracer>::PrepareEallocShardsContext, <Item31 as Tracer>::PrepareEallocShardsContext)
type PrepareEallocShardsContext = (<Item0 as Tracer>::PrepareEallocShardsContext, <Item1 as Tracer>::PrepareEallocShardsContext, <Item2 as Tracer>::PrepareEallocShardsContext, <Item3 as Tracer>::PrepareEallocShardsContext, <Item4 as Tracer>::PrepareEallocShardsContext, <Item5 as Tracer>::PrepareEallocShardsContext, <Item6 as Tracer>::PrepareEallocShardsContext, <Item7 as Tracer>::PrepareEallocShardsContext, <Item8 as Tracer>::PrepareEallocShardsContext, <Item9 as Tracer>::PrepareEallocShardsContext, <Item10 as Tracer>::PrepareEallocShardsContext, <Item11 as Tracer>::PrepareEallocShardsContext, <Item12 as Tracer>::PrepareEallocShardsContext, <Item13 as Tracer>::PrepareEallocShardsContext, <Item14 as Tracer>::PrepareEallocShardsContext, <Item15 as Tracer>::PrepareEallocShardsContext, <Item16 as Tracer>::PrepareEallocShardsContext, <Item17 as Tracer>::PrepareEallocShardsContext, <Item18 as Tracer>::PrepareEallocShardsContext, <Item19 as Tracer>::PrepareEallocShardsContext, <Item20 as Tracer>::PrepareEallocShardsContext, <Item21 as Tracer>::PrepareEallocShardsContext, <Item22 as Tracer>::PrepareEallocShardsContext, <Item23 as Tracer>::PrepareEallocShardsContext, <Item24 as Tracer>::PrepareEallocShardsContext, <Item25 as Tracer>::PrepareEallocShardsContext, <Item26 as Tracer>::PrepareEallocShardsContext, <Item27 as Tracer>::PrepareEallocShardsContext, <Item28 as Tracer>::PrepareEallocShardsContext, <Item29 as Tracer>::PrepareEallocShardsContext, <Item30 as Tracer>::PrepareEallocShardsContext, <Item31 as Tracer>::PrepareEallocShardsContext)
start_prepare_ealloc_shards
+to end_prepare_ealloc_shards
.source§fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
fn start_prepare_ealloc_shards(&self) -> Self::PrepareEallocShardsContext
source§fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
fn end_prepare_ealloc_shards(&self, arg: Self::PrepareEallocShardsContext)
§type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext, <Item29 as Tracer>::FlushEallocContext, <Item30 as Tracer>::FlushEallocContext, <Item31 as Tracer>::FlushEallocContext)
type FlushEallocContext = (<Item0 as Tracer>::FlushEallocContext, <Item1 as Tracer>::FlushEallocContext, <Item2 as Tracer>::FlushEallocContext, <Item3 as Tracer>::FlushEallocContext, <Item4 as Tracer>::FlushEallocContext, <Item5 as Tracer>::FlushEallocContext, <Item6 as Tracer>::FlushEallocContext, <Item7 as Tracer>::FlushEallocContext, <Item8 as Tracer>::FlushEallocContext, <Item9 as Tracer>::FlushEallocContext, <Item10 as Tracer>::FlushEallocContext, <Item11 as Tracer>::FlushEallocContext, <Item12 as Tracer>::FlushEallocContext, <Item13 as Tracer>::FlushEallocContext, <Item14 as Tracer>::FlushEallocContext, <Item15 as Tracer>::FlushEallocContext, <Item16 as Tracer>::FlushEallocContext, <Item17 as Tracer>::FlushEallocContext, <Item18 as Tracer>::FlushEallocContext, <Item19 as Tracer>::FlushEallocContext, <Item20 as Tracer>::FlushEallocContext, <Item21 as Tracer>::FlushEallocContext, <Item22 as Tracer>::FlushEallocContext, <Item23 as Tracer>::FlushEallocContext, <Item24 as Tracer>::FlushEallocContext, <Item25 as Tracer>::FlushEallocContext, <Item26 as Tracer>::FlushEallocContext, <Item27 as Tracer>::FlushEallocContext, <Item28 as Tracer>::FlushEallocContext, <Item29 as Tracer>::FlushEallocContext, <Item30 as Tracer>::FlushEallocContext, <Item31 as Tracer>::FlushEallocContext)
start_flush_ealloc
+to end_flush_ealloc
.source§fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
fn start_flush_ealloc(&self, archetype: DbgTypeId) -> Self::FlushEallocContext
source§fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
fn end_flush_ealloc(&self, arg: Self::FlushEallocContext, archetype: DbgTypeId)
source§fn steal_return_complete(&self, thread: Thread)
fn steal_return_complete(&self, thread: Thread)
source§fn steal_return_pending(&self, thread: Thread)
fn steal_return_pending(&self, thread: Thread)
source§fn mark_runnable(&self, node: Node)
fn mark_runnable(&self, node: Node)
source§fn unmark_runnable(&self, node: Node)
fn unmark_runnable(&self, node: Node)
source§fn complete_system(&self, node: Node, remaining: usize)
fn complete_system(&self, node: Node, remaining: usize)
§type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext, <Item29 as Tracer>::RunSendableContext, <Item30 as Tracer>::RunSendableContext, <Item31 as Tracer>::RunSendableContext)
type RunSendableContext = (<Item0 as Tracer>::RunSendableContext, <Item1 as Tracer>::RunSendableContext, <Item2 as Tracer>::RunSendableContext, <Item3 as Tracer>::RunSendableContext, <Item4 as Tracer>::RunSendableContext, <Item5 as Tracer>::RunSendableContext, <Item6 as Tracer>::RunSendableContext, <Item7 as Tracer>::RunSendableContext, <Item8 as Tracer>::RunSendableContext, <Item9 as Tracer>::RunSendableContext, <Item10 as Tracer>::RunSendableContext, <Item11 as Tracer>::RunSendableContext, <Item12 as Tracer>::RunSendableContext, <Item13 as Tracer>::RunSendableContext, <Item14 as Tracer>::RunSendableContext, <Item15 as Tracer>::RunSendableContext, <Item16 as Tracer>::RunSendableContext, <Item17 as Tracer>::RunSendableContext, <Item18 as Tracer>::RunSendableContext, <Item19 as Tracer>::RunSendableContext, <Item20 as Tracer>::RunSendableContext, <Item21 as Tracer>::RunSendableContext, <Item22 as Tracer>::RunSendableContext, <Item23 as Tracer>::RunSendableContext, <Item24 as Tracer>::RunSendableContext, <Item25 as Tracer>::RunSendableContext, <Item26 as Tracer>::RunSendableContext, <Item27 as Tracer>::RunSendableContext, <Item28 as Tracer>::RunSendableContext, <Item29 as Tracer>::RunSendableContext, <Item30 as Tracer>::RunSendableContext, <Item31 as Tracer>::RunSendableContext)
start_run_sendable
+to end_run_sendable
.source§fn start_run_sendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-) -> Self::RunSendableContext
fn start_run_sendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -) -> Self::RunSendableContext
source§fn end_run_sendable(
+) -> Self::RunSendableContext
fn end_run_sendable( +) -> Self::RunSendableContext
source§fn end_run_sendable(
&self,
context: Self::RunSendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Sendable
-)
fn end_run_sendable( &self, context: Self::RunSendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Sendable -)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext, <Item29 as Tracer>::RunUnsendableContext, <Item30 as Tracer>::RunUnsendableContext, <Item31 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext, <Item29 as Tracer>::RunUnsendableContext, <Item30 as Tracer>::RunUnsendableContext, <Item31 as Tracer>::RunUnsendableContext)
start_run_unsendable
-to end_run_unsendable
.source§fn start_run_unsendable(
+)
fn start_run_unsendable( +)
§type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext, <Item29 as Tracer>::RunUnsendableContext, <Item30 as Tracer>::RunUnsendableContext, <Item31 as Tracer>::RunUnsendableContext)
type RunUnsendableContext = (<Item0 as Tracer>::RunUnsendableContext, <Item1 as Tracer>::RunUnsendableContext, <Item2 as Tracer>::RunUnsendableContext, <Item3 as Tracer>::RunUnsendableContext, <Item4 as Tracer>::RunUnsendableContext, <Item5 as Tracer>::RunUnsendableContext, <Item6 as Tracer>::RunUnsendableContext, <Item7 as Tracer>::RunUnsendableContext, <Item8 as Tracer>::RunUnsendableContext, <Item9 as Tracer>::RunUnsendableContext, <Item10 as Tracer>::RunUnsendableContext, <Item11 as Tracer>::RunUnsendableContext, <Item12 as Tracer>::RunUnsendableContext, <Item13 as Tracer>::RunUnsendableContext, <Item14 as Tracer>::RunUnsendableContext, <Item15 as Tracer>::RunUnsendableContext, <Item16 as Tracer>::RunUnsendableContext, <Item17 as Tracer>::RunUnsendableContext, <Item18 as Tracer>::RunUnsendableContext, <Item19 as Tracer>::RunUnsendableContext, <Item20 as Tracer>::RunUnsendableContext, <Item21 as Tracer>::RunUnsendableContext, <Item22 as Tracer>::RunUnsendableContext, <Item23 as Tracer>::RunUnsendableContext, <Item24 as Tracer>::RunUnsendableContext, <Item25 as Tracer>::RunUnsendableContext, <Item26 as Tracer>::RunUnsendableContext, <Item27 as Tracer>::RunUnsendableContext, <Item28 as Tracer>::RunUnsendableContext, <Item29 as Tracer>::RunUnsendableContext, <Item30 as Tracer>::RunUnsendableContext, <Item31 as Tracer>::RunUnsendableContext)
start_run_unsendable
+to end_run_unsendable
.source§fn start_run_unsendable(
&self,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-) -> Self::RunUnsendableContext
fn start_run_unsendable( &self, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
+) -> Self::RunUnsendableContext
fn end_run_unsendable( +) -> Self::RunUnsendableContext
source§fn end_run_unsendable(
&self,
context: Self::RunUnsendableContext,
thread: Thread,
node: Node,
debug_name: &str,
system: &mut dyn Unsendable
-)
fn end_run_unsendable( &self, context: Self::RunUnsendableContext, thread: Thread, node: Node, debug_name: &str, system: &mut dyn Unsendable -)
Auto Trait Implementations§
impl<T> RefUnwindSafe for Aggregate<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Aggregate<T>where
T: RefUnwindSafe,
impl<T> Send for Aggregate<T>where
T: Send,
impl<T> Sync for Aggregate<T>where
T: Sync,
impl<T> Unpin for Aggregate<T>where
diff --git a/master/dynec/util/struct.DbgTypeId.html b/master/dynec/util/struct.DbgTypeId.html
index 35ba19e7df..6a4e184d52 100644
--- a/master/dynec/util/struct.DbgTypeId.html
+++ b/master/dynec/util/struct.DbgTypeId.html
@@ -5,7 +5,7 @@
}Expand description
A TypeId that may include type name for debugging.
Fields§
§id: TypeId
The actual TypeId
.
Implementations§
Trait Implementations§
Trait Implementations§
source§impl Ord for DbgTypeId
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more1.21.0 · source§fn min(self, other: Self) -> Selfwhere
diff --git a/master/getrandom/all.html b/master/getrandom/all.html
index df79c51703..86363211f6 100644
--- a/master/getrandom/all.html
+++ b/master/getrandom/all.html
@@ -1,2 +1,2 @@
-List of all items in this crate
+List of all items in this crate
List of all items
Structs
Functions
\ No newline at end of file
diff --git a/master/getrandom/fn.getrandom.html b/master/getrandom/fn.getrandom.html
index 6f2c23886d..4883880700 100644
--- a/master/getrandom/fn.getrandom.html
+++ b/master/getrandom/fn.getrandom.html
@@ -1,5 +1,5 @@
-getrandom in getrandom - Rust
- pub fn getrandom(dest: &mut [u8]) -> Result<(), Error>
Expand description
Fill dest
with random bytes from the system’s preferred random number
+
getrandom in getrandom - Rust
+ pub fn getrandom(dest: &mut [u8]) -> Result<(), Error>
Expand description
Fill dest
with random bytes from the system’s preferred random number
source.
This function returns an error on any failure, including partial reads. We
make no guarantees regarding the contents of dest
on error. If dest
is
diff --git a/master/getrandom/fn.getrandom_uninit.html b/master/getrandom/fn.getrandom_uninit.html
index 0a52a13ad6..a7950e3f5d 100644
--- a/master/getrandom/fn.getrandom_uninit.html
+++ b/master/getrandom/fn.getrandom_uninit.html
@@ -1,5 +1,5 @@
-
getrandom_uninit in getrandom - Rust
- Function getrandom::getrandom_uninit
source · pub fn getrandom_uninit(
+getrandom_uninit in getrandom - Rust
+ Function getrandom::getrandom_uninit
source · pub fn getrandom_uninit(
dest: &mut [MaybeUninit<u8>]
) -> Result<&mut [u8], Error>
Expand description
Version of the getrandom
function which fills dest
with random bytes
returns a mutable reference to those bytes.
diff --git a/master/getrandom/index.html b/master/getrandom/index.html
index c7474fa0a8..5657ce8127 100644
--- a/master/getrandom/index.html
+++ b/master/getrandom/index.html
@@ -1,6 +1,6 @@
-getrandom - Rust
Expand description
A TypeId that may include type name for debugging.
Fields§
§id: TypeId
The actual TypeId
.
Implementations§
Trait Implementations§
Trait Implementations§
source§impl Ord for DbgTypeId
impl Ord for DbgTypeId
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
1.21.0 · source§fn min(self, other: Self) -> Selfwhere
diff --git a/master/getrandom/all.html b/master/getrandom/all.html
index df79c51703..86363211f6 100644
--- a/master/getrandom/all.html
+++ b/master/getrandom/all.html
@@ -1,2 +1,2 @@
-List of all items in this crate
+List of all items in this crate
List of all items
Structs
Functions
\ No newline at end of file
diff --git a/master/getrandom/fn.getrandom.html b/master/getrandom/fn.getrandom.html
index 6f2c23886d..4883880700 100644
--- a/master/getrandom/fn.getrandom.html
+++ b/master/getrandom/fn.getrandom.html
@@ -1,5 +1,5 @@
-getrandom in getrandom - Rust
- pub fn getrandom(dest: &mut [u8]) -> Result<(), Error>
Expand description
Fill dest
with random bytes from the system’s preferred random number
+
getrandom in getrandom - Rust
+ pub fn getrandom(dest: &mut [u8]) -> Result<(), Error>
Expand description
Fill dest
with random bytes from the system’s preferred random number
source.
This function returns an error on any failure, including partial reads. We
make no guarantees regarding the contents of dest
on error. If dest
is
diff --git a/master/getrandom/fn.getrandom_uninit.html b/master/getrandom/fn.getrandom_uninit.html
index 0a52a13ad6..a7950e3f5d 100644
--- a/master/getrandom/fn.getrandom_uninit.html
+++ b/master/getrandom/fn.getrandom_uninit.html
@@ -1,5 +1,5 @@
-
getrandom_uninit in getrandom - Rust
- Function getrandom::getrandom_uninit
source · pub fn getrandom_uninit(
+getrandom_uninit in getrandom - Rust
+ Function getrandom::getrandom_uninit
source · pub fn getrandom_uninit(
dest: &mut [MaybeUninit<u8>]
) -> Result<&mut [u8], Error>
Expand description
Version of the getrandom
function which fills dest
with random bytes
returns a mutable reference to those bytes.
diff --git a/master/getrandom/index.html b/master/getrandom/index.html
index c7474fa0a8..5657ce8127 100644
--- a/master/getrandom/index.html
+++ b/master/getrandom/index.html
@@ -1,6 +1,6 @@
-getrandom - Rust
fn min(self, other: Self) -> Selfwhere
diff --git a/master/getrandom/all.html b/master/getrandom/all.html
index df79c51703..86363211f6 100644
--- a/master/getrandom/all.html
+++ b/master/getrandom/all.html
@@ -1,2 +1,2 @@
-List of all items in this crate
+List of all items in this crate
List of all items
Structs
Functions
\ No newline at end of file
diff --git a/master/getrandom/fn.getrandom.html b/master/getrandom/fn.getrandom.html
index 6f2c23886d..4883880700 100644
--- a/master/getrandom/fn.getrandom.html
+++ b/master/getrandom/fn.getrandom.html
@@ -1,5 +1,5 @@
-getrandom in getrandom - Rust
- pub fn getrandom(dest: &mut [u8]) -> Result<(), Error>
Expand description
Fill dest
with random bytes from the system’s preferred random number
+
getrandom in getrandom - Rust
+ pub fn getrandom(dest: &mut [u8]) -> Result<(), Error>
Expand description
Fill dest
with random bytes from the system’s preferred random number
source.
This function returns an error on any failure, including partial reads. We
make no guarantees regarding the contents of dest
on error. If dest
is
diff --git a/master/getrandom/fn.getrandom_uninit.html b/master/getrandom/fn.getrandom_uninit.html
index 0a52a13ad6..a7950e3f5d 100644
--- a/master/getrandom/fn.getrandom_uninit.html
+++ b/master/getrandom/fn.getrandom_uninit.html
@@ -1,5 +1,5 @@
-
getrandom_uninit in getrandom - Rust
- Function getrandom::getrandom_uninit
source · pub fn getrandom_uninit(
+getrandom_uninit in getrandom - Rust
+ Function getrandom::getrandom_uninit
source · pub fn getrandom_uninit(
dest: &mut [MaybeUninit<u8>]
) -> Result<&mut [u8], Error>
Expand description
Version of the getrandom
function which fills dest
with random bytes
returns a mutable reference to those bytes.
diff --git a/master/getrandom/index.html b/master/getrandom/index.html
index c7474fa0a8..5657ce8127 100644
--- a/master/getrandom/index.html
+++ b/master/getrandom/index.html
@@ -1,6 +1,6 @@
-getrandom - Rust
List of all items
Structs
Functions
pub fn getrandom(dest: &mut [u8]) -> Result<(), Error>
Expand description
Fill dest
with random bytes from the system’s preferred random number
+
pub fn getrandom(dest: &mut [u8]) -> Result<(), Error>
Expand description
Fill dest
with random bytes from the system’s preferred random number
source.
This function returns an error on any failure, including partial reads. We
make no guarantees regarding the contents of dest
on error. If dest
is
diff --git a/master/getrandom/fn.getrandom_uninit.html b/master/getrandom/fn.getrandom_uninit.html
index 0a52a13ad6..a7950e3f5d 100644
--- a/master/getrandom/fn.getrandom_uninit.html
+++ b/master/getrandom/fn.getrandom_uninit.html
@@ -1,5 +1,5 @@
-
Function getrandom::getrandom_uninit
source · pub fn getrandom_uninit(
+getrandom_uninit in getrandom - Rust
+ Function getrandom::getrandom_uninit
source · pub fn getrandom_uninit(
dest: &mut [MaybeUninit<u8>]
) -> Result<&mut [u8], Error>
Expand description
Version of the getrandom
function which fills dest
with random bytes
returns a mutable reference to those bytes.
diff --git a/master/getrandom/index.html b/master/getrandom/index.html
index c7474fa0a8..5657ce8127 100644
--- a/master/getrandom/index.html
+++ b/master/getrandom/index.html
@@ -1,6 +1,6 @@
-getrandom - Rust