pub struct DiscoveryEdge {
pub from_guid: String,
pub to_guid: String,
pub topic: String,
}Expand description
Edge im Discovery-Graph: Pub→Sub-Match auf einem Topic.
Fields§
§from_guid: StringGUID-Hex des Pub-Endpoints.
to_guid: StringGUID-Hex des Sub-Endpoints.
topic: StringTopic-Name.
Trait Implementations§
Source§impl Clone for DiscoveryEdge
impl Clone for DiscoveryEdge
Source§fn clone(&self) -> DiscoveryEdge
fn clone(&self) -> DiscoveryEdge
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 DiscoveryEdge
impl Debug for DiscoveryEdge
Source§impl PartialEq for DiscoveryEdge
impl PartialEq for DiscoveryEdge
Source§fn eq(&self, other: &DiscoveryEdge) -> bool
fn eq(&self, other: &DiscoveryEdge) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DiscoveryEdge
impl StructuralPartialEq for DiscoveryEdge
Auto Trait Implementations§
impl Freeze for DiscoveryEdge
impl RefUnwindSafe for DiscoveryEdge
impl Send for DiscoveryEdge
impl Sync for DiscoveryEdge
impl Unpin for DiscoveryEdge
impl UnsafeUnpin for DiscoveryEdge
impl UnwindSafe for DiscoveryEdge
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