pub struct Addresses {
pub overlay: String,
pub underlay: Vec<String>,
pub ethereum: String,
pub public_key: String,
pub pss_public_key: String,
}Expand description
Node addresses payload — GET /addresses.
Fields§
§overlay: StringOverlay (DHT) address.
underlay: Vec<String>Underlay multiaddrs.
ethereum: StringEthereum address.
public_key: StringNode libp2p public key (hex).
pss_public_key: StringPSS public key (hex).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Addresses
impl<'de> Deserialize<'de> for Addresses
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 Addresses
impl StructuralPartialEq for Addresses
Auto Trait Implementations§
impl Freeze for Addresses
impl RefUnwindSafe for Addresses
impl Send for Addresses
impl Sync for Addresses
impl Unpin for Addresses
impl UnsafeUnpin for Addresses
impl UnwindSafe for Addresses
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