pub struct GossipOverview {
pub seen_by: Vec<String>,
pub reachability: Reachability,
}Expand description
Snapshot of seen-by + unreachable info.
Fields§
§seen_by: Vec<String>§reachability: ReachabilityTrait Implementations§
Source§impl Clone for GossipOverview
impl Clone for GossipOverview
Source§fn clone(&self) -> GossipOverview
fn clone(&self) -> GossipOverview
Returns a duplicate of the value. Read more
1.0.0 · 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 GossipOverview
impl Debug for GossipOverview
Source§impl Default for GossipOverview
impl Default for GossipOverview
Source§fn default() -> GossipOverview
fn default() -> GossipOverview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GossipOverview
impl<'de> Deserialize<'de> for GossipOverview
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 GossipOverview
impl RefUnwindSafe for GossipOverview
impl Send for GossipOverview
impl Sync for GossipOverview
impl Unpin for GossipOverview
impl UnsafeUnpin for GossipOverview
impl UnwindSafe for GossipOverview
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