pub struct Node {
pub connections: Arc<Mutex<NodeMap>>,
pub node_addr: SocketAddr,
pub duration: u32,
pub network: Arc<Mutex<Network>>,
pub event_queue: EventQueue<NetEvent>,
pub peer: Option<String>,
}
Expand description
Structure of a node
Fields§
§connections: Arc<Mutex<NodeMap>>
List of peers of the current node
node_addr: SocketAddr
Public address of the node
duration: u32
Sets the duration (in seconds) of emitting messages to other peers
network: Arc<Mutex<Network>>
Network of nodes
event_queue: EventQueue<NetEvent>
Network events queue
peer: Option<String>
Sets the optional peer address to connect to
Implementations§
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more