Struct aether_lib::config::HandshakeConfig
source · [−]Expand description
Structure to represent configuration for handshake
module
Fields
peer_poll_time: u64
Poll time to send sequence or sequence+acknowledgement to the other peer Also, the timeout for receiving sequence or sequence+acknowledgment from the other peer (in ms)
handshake_timeout: u64
Timeout after which handshake can be declared failed if not complete (in ms)
Trait Implementations
sourceimpl Clone for HandshakeConfig
impl Clone for HandshakeConfig
sourcefn clone(&self) -> HandshakeConfig
fn clone(&self) -> HandshakeConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for HandshakeConfig
impl Debug for HandshakeConfig
sourceimpl Default for HandshakeConfig
impl Default for HandshakeConfig
Default values for HandshakeConfig
sourceimpl<'de> Deserialize<'de> for HandshakeConfig where
HandshakeConfig: Default,
impl<'de> Deserialize<'de> for HandshakeConfig where
HandshakeConfig: Default,
sourcefn 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
sourceimpl PartialEq<HandshakeConfig> for HandshakeConfig
impl PartialEq<HandshakeConfig> for HandshakeConfig
sourcefn eq(&self, other: &HandshakeConfig) -> bool
fn eq(&self, other: &HandshakeConfig) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &HandshakeConfig) -> bool
fn ne(&self, other: &HandshakeConfig) -> bool
This method tests for !=
.
sourceimpl Serialize for HandshakeConfig
impl Serialize for HandshakeConfig
impl Copy for HandshakeConfig
impl StructuralPartialEq for HandshakeConfig
Auto Trait Implementations
impl RefUnwindSafe for HandshakeConfig
impl Send for HandshakeConfig
impl Sync for HandshakeConfig
impl Unpin for HandshakeConfig
impl UnwindSafe for HandshakeConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more