pub struct TracePaths(pub Vec<(AssetId, Vec<TracePath>)>);Expand description
Each behavior’s node paths, indexed by the node ids ExecutionTrace events carry. Published once when tracing is first requested (the compile that derives it runs at init either way; the publish just exposes it).
Tuple Fields§
§0: Vec<(AssetId, Vec<TracePath>)>Trait Implementations§
Source§impl Clone for TracePaths
impl Clone for TracePaths
Source§fn clone(&self) -> TracePaths
fn clone(&self) -> TracePaths
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TracePaths
impl Debug for TracePaths
Source§impl Default for TracePaths
impl Default for TracePaths
Source§fn default() -> TracePaths
fn default() -> TracePaths
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TracePaths
impl RefUnwindSafe for TracePaths
impl Send for TracePaths
impl Sync for TracePaths
impl Unpin for TracePaths
impl UnsafeUnpin for TracePaths
impl UnwindSafe for TracePaths
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more