pub struct DiscoveryNode {
pub guid: String,
pub label: String,
pub kind: String,
}Expand description
Knoten im Discovery-Graph (Endpoint).
Fields§
§guid: StringGUID-Hex.
label: StringDisplay-Name.
kind: String“publisher” | “subscriber” | “participant”.
Trait Implementations§
Source§impl Clone for DiscoveryNode
impl Clone for DiscoveryNode
Source§fn clone(&self) -> DiscoveryNode
fn clone(&self) -> DiscoveryNode
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 DiscoveryNode
impl Debug for DiscoveryNode
Source§impl PartialEq for DiscoveryNode
impl PartialEq for DiscoveryNode
Source§fn eq(&self, other: &DiscoveryNode) -> bool
fn eq(&self, other: &DiscoveryNode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DiscoveryNode
impl StructuralPartialEq for DiscoveryNode
Auto Trait Implementations§
impl Freeze for DiscoveryNode
impl RefUnwindSafe for DiscoveryNode
impl Send for DiscoveryNode
impl Sync for DiscoveryNode
impl Unpin for DiscoveryNode
impl UnsafeUnpin for DiscoveryNode
impl UnwindSafe for DiscoveryNode
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