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: u64
§subversion: String
§protocolversion: u64
§localservices: String
§localservicesnames: Vec<String>
§localrelay: bool
§timeoffset: u64
§connections: u64
§connections_in: u64
§connections_out: u64
§networkactive: bool
§networks: Vec<Network>
§relayfee: f64
§incrementalfee: f64
§localaddresses: Vec<LocalAddress>
§warnings: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GetNetworkInfoCommandResponse
impl<'de> Deserialize<'de> for GetNetworkInfoCommandResponse
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetNetworkInfoCommandResponse
impl RefUnwindSafe for GetNetworkInfoCommandResponse
impl Send for GetNetworkInfoCommandResponse
impl Sync for GetNetworkInfoCommandResponse
impl Unpin for GetNetworkInfoCommandResponse
impl UnwindSafe for GetNetworkInfoCommandResponse
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