pub struct GetNetworkInfoCommandResponse {Show 16 fields
pub version: u64,
pub subversion: String,
pub protocolversion: u64,
pub localservices: String,
pub localservicesnames: Vec<String>,
pub localrelay: bool,
pub timeoffset: u64,
pub connections: u64,
pub connections_in: u64,
pub connections_out: u64,
pub networkactive: bool,
pub networks: Vec<Network>,
pub relayfee: f64,
pub incrementalfee: f64,
pub localaddresses: Vec<LocalAddress>,
pub warnings: String,
}Fields
version: u64subversion: Stringprotocolversion: u64localservices: Stringlocalservicesnames: Vec<String>localrelay: booltimeoffset: u64connections: u64connections_in: u64connections_out: u64networkactive: boolnetworks: Vec<Network>relayfee: f64incrementalfee: f64localaddresses: Vec<LocalAddress>warnings: StringTrait Implementations
sourceimpl Debug for GetNetworkInfoCommandResponse
impl Debug for GetNetworkInfoCommandResponse
sourceimpl<'de> Deserialize<'de> for GetNetworkInfoCommandResponse
impl<'de> Deserialize<'de> for GetNetworkInfoCommandResponse
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
Auto Trait Implementations
impl RefUnwindSafe for GetNetworkInfoCommandResponse
impl Send for GetNetworkInfoCommandResponse
impl Sync for GetNetworkInfoCommandResponse
impl Unpin for GetNetworkInfoCommandResponse
impl UnwindSafe for GetNetworkInfoCommandResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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