pub struct DCIUpdate {
pub new_entrypoints: HashMap<ComponentId, HashSet<EntryPoint>>,
pub new_entrypoint_params: HashMap<String, HashSet<(TracingParams, Option<String>)>>,
pub trace_results: HashMap<String, TracingResult>,
}Fields§
§new_entrypoints: HashMap<ComponentId, HashSet<EntryPoint>>Map of component id to the new entrypoints associated with the component
new_entrypoint_params: HashMap<String, HashSet<(TracingParams, Option<String>)>>Map of entrypoint id to the new entrypoint params associtated with it (and optionally the component linked to those params)
trace_results: HashMap<String, TracingResult>Map of entrypoint id to its trace result
Trait Implementations§
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
Source§impl From<TracedEntryPointRequestResponse> for DCIUpdate
impl From<TracedEntryPointRequestResponse> for DCIUpdate
Source§fn from(response: TracedEntryPointRequestResponse) -> Self
fn from(response: TracedEntryPointRequestResponse) -> Self
Converts to this type from the input type.
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