pub struct NodeConfig {
pub hostname: String,
pub port: u16,
pub ibdev: String,
pub rankid: usize,
pub comment: String,
}Expand description
Configuration for a single node in the network.
Fields§
§hostname: StringNetwork hostname or IP address.
port: u16TCP port used for the initial endpoint exchange.
ibdev: StringName of the RDMA device to use (e.g. "mlx5_0").
rankid: usizeUnique rank identifier, must be sequential starting from 0.
comment: StringOptional human-readable label.
Implementations§
Source§impl NodeConfig
impl NodeConfig
Sourcepub fn builder() -> NodeConfigBuilder
pub fn builder() -> NodeConfigBuilder
Create an instance of NodeConfig using the builder syntax
Trait Implementations§
Source§impl Clone for NodeConfig
impl Clone for NodeConfig
Source§fn clone(&self) -> NodeConfig
fn clone(&self) -> NodeConfig
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 Debug for NodeConfig
impl Debug for NodeConfig
Source§impl<'de> Deserialize<'de> for NodeConfig
impl<'de> Deserialize<'de> for NodeConfig
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
Auto Trait Implementations§
impl Freeze for NodeConfig
impl RefUnwindSafe for NodeConfig
impl Send for NodeConfig
impl Sync for NodeConfig
impl Unpin for NodeConfig
impl UnsafeUnpin for NodeConfig
impl UnwindSafe for NodeConfig
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