pub struct ExploratoryConfig {
pub inbound_len: Option<usize>,
pub inbound_count: Option<usize>,
pub outbound_len: Option<usize>,
pub outbound_count: Option<usize>,
}Expand description
Exploratory tunnel pool config.
Fields§
§inbound_len: Option<usize>Length of an inbound exploratory tunnel.
inbound_count: Option<usize>Number of inbound exploratory tunnels.
outbound_len: Option<usize>Length of an outbound exploratory tunnel.
outbound_count: Option<usize>Number of outbound exploratory tunnels.
Trait Implementations§
Source§impl Clone for ExploratoryConfig
impl Clone for ExploratoryConfig
Source§fn clone(&self) -> ExploratoryConfig
fn clone(&self) -> ExploratoryConfig
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 PartialEq for ExploratoryConfig
impl PartialEq for ExploratoryConfig
impl Eq for ExploratoryConfig
impl StructuralPartialEq for ExploratoryConfig
Auto Trait Implementations§
impl Freeze for ExploratoryConfig
impl RefUnwindSafe for ExploratoryConfig
impl Send for ExploratoryConfig
impl Sync for ExploratoryConfig
impl Unpin for ExploratoryConfig
impl UnwindSafe for ExploratoryConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.