pub struct NetworkConfig<K: KeyType> {
pub network_name: String,
pub instance_id: String,
pub instance_key_pair: K::Secret,
pub local_key: Keypair,
pub listen_addr: Multiaddr,
pub target_peer_count: u32,
pub bootstrap_peers: Vec<Multiaddr>,
pub enable_mdns: bool,
pub enable_kademlia: bool,
pub using_evm_address_for_handshake_verification: bool,
}
Expand description
Configuration for the network service
Fields§
§network_name: String
Network name/namespace
instance_id: String
Instance id for blueprint protocol
instance_key_pair: K::Secret
Instance secret key for blueprint protocol
local_key: Keypair
Local keypair for authentication
listen_addr: Multiaddr
Address to listen on
target_peer_count: u32
Target number of peers to maintain
bootstrap_peers: Vec<Multiaddr>
Bootstrap peers to connect to
enable_mdns: bool
Whether to enable mDNS discovery
enable_kademlia: bool
Whether to enable Kademlia DHT
using_evm_address_for_handshake_verification: bool
Whether to use evm addresses for verification of handshakes and msgs
Trait Implementations§
Source§impl<K: Clone + KeyType> Clone for NetworkConfig<K>
impl<K: Clone + KeyType> Clone for NetworkConfig<K>
Source§fn clone(&self) -> NetworkConfig<K>
fn clone(&self) -> NetworkConfig<K>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<K> Freeze for NetworkConfig<K>
impl<K> RefUnwindSafe for NetworkConfig<K>
impl<K> Send for NetworkConfig<K>
impl<K> Sync for NetworkConfig<K>
impl<K> Unpin for NetworkConfig<K>
impl<K> UnwindSafe for NetworkConfig<K>
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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