pub struct NodeInfo {
pub addr: String,
}Expand description
Information about a discovered fabric node.
Returned by Fabric::nodes as part of fabric discovery. Contains
the node’s network address for establishing data-plane connections.
Fields§
§addr: StringNode address in host:port format (e.g. "10.10.0.11:5701").
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NodeInfo
impl RefUnwindSafe for NodeInfo
impl Send for NodeInfo
impl Sync for NodeInfo
impl Unpin for NodeInfo
impl UnwindSafe for NodeInfo
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