pub struct ServiceEdge {
pub parent: u16,
pub child: u16,
}Expand description
One observed parent->child invocation between services.
parent_service_idx and child_service_idx are indices into a
caller-managed signal_names table.
Fields§
§parent: u16§child: u16Trait Implementations§
Source§impl Clone for ServiceEdge
impl Clone for ServiceEdge
Source§fn clone(&self) -> ServiceEdge
fn clone(&self) -> ServiceEdge
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 ServiceEdge
impl Debug for ServiceEdge
Source§impl PartialEq for ServiceEdge
impl PartialEq for ServiceEdge
Source§fn eq(&self, other: &ServiceEdge) -> bool
fn eq(&self, other: &ServiceEdge) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ServiceEdge
impl Eq for ServiceEdge
impl StructuralPartialEq for ServiceEdge
Auto Trait Implementations§
impl Freeze for ServiceEdge
impl RefUnwindSafe for ServiceEdge
impl Send for ServiceEdge
impl Sync for ServiceEdge
impl Unpin for ServiceEdge
impl UnsafeUnpin for ServiceEdge
impl UnwindSafe for ServiceEdge
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