pub enum NodeId {
Chain(Address),
Offchain(OffchainPublicKey),
}Expand description
Uniquely identifies a HOPR node either by its [Address] or [OffchainPublicKey].
Variants§
Chain(Address)
Node represented by its on-chain [Address].
Offchain(OffchainPublicKey)
Node represented by its off-chain [OffchainPublicKey].
Implementations§
Source§impl NodeId
impl NodeId
Sourcepub const fn is_offchain(&self) -> bool
pub const fn is_offchain(&self) -> bool
Returns true if the enum is NodeId::Offchain otherwise false
Source§impl NodeId
impl NodeId
pub fn try_as_chain(self) -> Option<Address>
pub const fn try_as_chain_ref(&self) -> Option<&Address>
pub fn try_as_chain_mut(&mut self) -> Option<&mut Address>
pub fn try_as_offchain(self) -> Option<OffchainPublicKey>
pub const fn try_as_offchain_ref(&self) -> Option<&OffchainPublicKey>
pub fn try_as_offchain_mut(&mut self) -> Option<&mut OffchainPublicKey>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NodeId
impl<'de> Deserialize<'de> for NodeId
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 Copy for NodeId
impl Eq for NodeId
impl StructuralPartialEq for NodeId
Auto Trait Implementations§
impl Freeze for NodeId
impl RefUnwindSafe for NodeId
impl Send for NodeId
impl Sync for NodeId
impl Unpin for NodeId
impl UnwindSafe for NodeId
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more