pub struct ClientConfig {
pub local_addr: SocketAddr,
pub root_dir: PathBuf,
pub genesis_key: PublicKey,
pub qp2p: Config,
pub query_timeout: Duration,
pub cmd_timeout: Duration,
pub cmd_ack_wait: Duration,
}
Expand description
Configuration for sn_client.
Fields§
§local_addr: SocketAddr
The local address to bind to.
root_dir: PathBuf
Path to local storage.
genesis_key: PublicKey
Network’s genesis key
qp2p: Config
QuicP2p options.
query_timeout: Duration
The amount of time to wait for responses to queries before giving up and returning an error.
cmd_timeout: Duration
The amount of time to wait for cmds to not error before giving up and returning an error.
cmd_ack_wait: Duration
The amount of time to wait after a cmd is sent for AE flows to complete.
Implementations§
Source§impl ClientConfig
impl ClientConfig
Sourcepub async fn new(
root_dir: Option<&Path>,
local_addr: Option<SocketAddr>,
genesis_key: PublicKey,
config_file_path: Option<&Path>,
query_timeout: Option<Duration>,
cmd_timeout: Option<Duration>,
cmd_ack_wait: Option<Duration>,
) -> Self
pub async fn new( root_dir: Option<&Path>, local_addr: Option<SocketAddr>, genesis_key: PublicKey, config_file_path: Option<&Path>, query_timeout: Option<Duration>, cmd_timeout: Option<Duration>, cmd_ack_wait: Option<Duration>, ) -> Self
Returns a new Config
instance.
This will try to read QuicP2P configuration from config_file_path
, or else use the default
QuicP2P config. In either case, bootstrap_nodes
will be used to override the initial
network contacts.
If local_addr
is not specified, 127.0.0.1:0
will be used (e.g. localhost with a random
port).
If query_timeout
is not specified, DEFAULT_OPERATION_TIMEOUT
will be used.
Trait Implementations§
Source§impl Clone for ClientConfig
impl Clone for ClientConfig
Source§fn clone(&self) -> ClientConfig
fn clone(&self) -> ClientConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ClientConfig
impl Debug for ClientConfig
Source§impl<'de> Deserialize<'de> for ClientConfig
impl<'de> Deserialize<'de> for ClientConfig
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>,
Auto Trait Implementations§
impl Freeze for ClientConfig
impl RefUnwindSafe for ClientConfig
impl Send for ClientConfig
impl Sync for ClientConfig
impl Unpin for ClientConfig
impl UnwindSafe for ClientConfig
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
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>
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>
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