Struct iota_client::client::NetworkInfo
source · [−]pub struct NetworkInfo {
pub protocol_parameters: ProtocolParameters,
pub local_pow: bool,
pub fallback_to_local_pow: bool,
pub tips_interval: u64,
}Expand description
Struct containing network and PoW related information
Fields
protocol_parameters: ProtocolParametersProtocol parameters.
local_pow: boolLocal proof of work.
fallback_to_local_pow: boolFallback to local proof of work if the node doesn’t support remote PoW.
tips_interval: u64Tips request interval during PoW in seconds.
Trait Implementations
sourceimpl Clone for NetworkInfo
impl Clone for NetworkInfo
sourcefn clone(&self) -> NetworkInfo
fn clone(&self) -> NetworkInfo
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 moresourceimpl Debug for NetworkInfo
impl Debug for NetworkInfo
sourceimpl Default for NetworkInfo
impl Default for NetworkInfo
sourceimpl<'de> Deserialize<'de> for NetworkInfo
impl<'de> Deserialize<'de> for NetworkInfo
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<NetworkInfo> for NetworkInfo
impl PartialEq<NetworkInfo> for NetworkInfo
sourcefn eq(&self, other: &NetworkInfo) -> bool
fn eq(&self, other: &NetworkInfo) -> bool
sourceimpl Serialize for NetworkInfo
impl Serialize for NetworkInfo
impl Eq for NetworkInfo
impl StructuralEq for NetworkInfo
impl StructuralPartialEq for NetworkInfo
Auto Trait Implementations
impl RefUnwindSafe for NetworkInfo
impl Send for NetworkInfo
impl Sync for NetworkInfo
impl Unpin for NetworkInfo
impl UnwindSafe for NetworkInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.