pub struct TracedEntryPointRequestResponse {
pub traced_entry_points: HashMap<ComponentId, Vec<(EntryPointWithTracingParams, TracingResult)>>,
pub pagination: PaginationResponse,
}Fields§
§traced_entry_points: HashMap<ComponentId, Vec<(EntryPointWithTracingParams, TracingResult)>>Map of protocol component id to a list of a tuple containing each entry point with its tracing parameters and its corresponding tracing results.
pagination: PaginationResponseTrait Implementations§
Source§impl Clone for TracedEntryPointRequestResponse
impl Clone for TracedEntryPointRequestResponse
Source§fn clone(&self) -> TracedEntryPointRequestResponse
fn clone(&self) -> TracedEntryPointRequestResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl DeepSizeOf for TracedEntryPointRequestResponse
impl DeepSizeOf for TracedEntryPointRequestResponse
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 TracedEntryPointRequestResponse
impl<'de> Deserialize<'de> for TracedEntryPointRequestResponse
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.
Source§impl PartialEq for TracedEntryPointRequestResponse
impl PartialEq for TracedEntryPointRequestResponse
Source§fn eq(&self, other: &TracedEntryPointRequestResponse) -> bool
fn eq(&self, other: &TracedEntryPointRequestResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'__s> ToSchema<'__s> for TracedEntryPointRequestResponse
impl<'__s> ToSchema<'__s> for TracedEntryPointRequestResponse
impl Eq for TracedEntryPointRequestResponse
impl StructuralPartialEq for TracedEntryPointRequestResponse
Auto Trait Implementations§
impl Freeze for TracedEntryPointRequestResponse
impl RefUnwindSafe for TracedEntryPointRequestResponse
impl Send for TracedEntryPointRequestResponse
impl Sync for TracedEntryPointRequestResponse
impl Unpin for TracedEntryPointRequestResponse
impl UnwindSafe for TracedEntryPointRequestResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.