pub struct ChiaPeersListResult {
pub peers: Vec<ChiaPeerEntry>,
}Expand description
control.chiaPeers.list — every tracked Chia peer: trusted, discovered and banned alike.
Fields§
§peers: Vec<ChiaPeerEntry>The tracked peers — read user_managed to tell the trusted set from the discovered one,
and banned to see the exclusions. A conforming node MUST NOT omit banned entries: this
list is the only way to enumerate them.
Trait Implementations§
Source§impl Clone for ChiaPeersListResult
impl Clone for ChiaPeersListResult
Source§fn clone(&self) -> ChiaPeersListResult
fn clone(&self) -> ChiaPeersListResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ChiaPeersListResult
impl Debug for ChiaPeersListResult
Source§impl<'de> Deserialize<'de> for ChiaPeersListResult
impl<'de> Deserialize<'de> for ChiaPeersListResult
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
impl Eq for ChiaPeersListResult
Source§impl PartialEq for ChiaPeersListResult
impl PartialEq for ChiaPeersListResult
Source§impl Serialize for ChiaPeersListResult
impl Serialize for ChiaPeersListResult
impl StructuralPartialEq for ChiaPeersListResult
Auto Trait Implementations§
impl Freeze for ChiaPeersListResult
impl RefUnwindSafe for ChiaPeersListResult
impl Send for ChiaPeersListResult
impl Sync for ChiaPeersListResult
impl Unpin for ChiaPeersListResult
impl UnsafeUnpin for ChiaPeersListResult
impl UnwindSafe for ChiaPeersListResult
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