pub struct DCIUpdate {
pub new_entrypoints: HashMap<ComponentId, HashSet<EntryPoint>>,
pub new_entrypoint_params: HashMap<EntryPointId, HashSet<(TracingParams, Option<ComponentId>)>>,
pub trace_results: HashMap<EntryPointId, TracingResult>,
}Fields§
§new_entrypoints: HashMap<ComponentId, HashSet<EntryPoint>>§new_entrypoint_params: HashMap<EntryPointId, HashSet<(TracingParams, Option<ComponentId>)>>§trace_results: HashMap<EntryPointId, TracingResult>Trait Implementations§
Source§impl DeepSizeOf for DCIUpdate
impl DeepSizeOf for DCIUpdate
Source§fn deep_size_of_children(&self, context: &mut Context) -> usize
fn deep_size_of_children(&self, context: &mut Context) -> usize
Returns an estimation of the heap-managed storage of this object.
This does not include the size of the object itself. Read more
Source§fn deep_size_of(&self) -> usize
fn deep_size_of(&self) -> usize
Returns an estimation of a total size of memory owned by the
object, including heap-managed storage. Read more
Source§impl<'de> Deserialize<'de> for DCIUpdate
impl<'de> Deserialize<'de> for DCIUpdate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for DCIUpdate
Auto Trait Implementations§
impl Freeze for DCIUpdate
impl RefUnwindSafe for DCIUpdate
impl Send for DCIUpdate
impl Sync for DCIUpdate
impl Unpin for DCIUpdate
impl UnwindSafe for DCIUpdate
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