pub enum SnapPeerInfo {
Info(SnapInfo),
Handshake,
}
Expand description
Can contain either snap protocol info or a string “handshake”, which geth uses if the peer is still completing the handshake for the protocol.
Variants§
Info(SnapInfo)
The snap
sub-protocol metadata known about the host peer.
Handshake
The string “handshake” if the peer is still completing the handshake for the protocol.
Trait Implementations§
Source§impl Clone for SnapPeerInfo
impl Clone for SnapPeerInfo
Source§fn clone(&self) -> SnapPeerInfo
fn clone(&self) -> SnapPeerInfo
Returns a copy 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 SnapPeerInfo
impl Debug for SnapPeerInfo
Source§impl<'de> Deserialize<'de> for SnapPeerInfo
impl<'de> Deserialize<'de> for SnapPeerInfo
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
Source§impl PartialEq for SnapPeerInfo
impl PartialEq for SnapPeerInfo
Source§impl Serialize for SnapPeerInfo
impl Serialize for SnapPeerInfo
impl Eq for SnapPeerInfo
impl StructuralPartialEq for SnapPeerInfo
Auto Trait Implementations§
impl Freeze for SnapPeerInfo
impl RefUnwindSafe for SnapPeerInfo
impl Send for SnapPeerInfo
impl Sync for SnapPeerInfo
impl Unpin for SnapPeerInfo
impl UnwindSafe for SnapPeerInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)