pub enum EndpointRole {
Client,
Server {
can_coordinate: bool,
},
Bootstrap,
}
Expand description
Role of an endpoint in the Autonomi network
Variants§
Client
Regular client node (most common)
Server
Server node (always reachable, can coordinate)
Bootstrap
Bootstrap node (public, coordinates NAT traversal)
Implementations§
Trait Implementations§
Source§impl Clone for EndpointRole
impl Clone for EndpointRole
Source§fn clone(&self) -> EndpointRole
fn clone(&self) -> EndpointRole
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 EndpointRole
impl Debug for EndpointRole
Source§impl<'de> Deserialize<'de> for EndpointRole
impl<'de> Deserialize<'de> for EndpointRole
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 EndpointRole
impl PartialEq for EndpointRole
Source§impl Serialize for EndpointRole
impl Serialize for EndpointRole
impl Copy for EndpointRole
impl Eq for EndpointRole
impl StructuralPartialEq for EndpointRole
Auto Trait Implementations§
impl Freeze for EndpointRole
impl RefUnwindSafe for EndpointRole
impl Send for EndpointRole
impl Sync for EndpointRole
impl Unpin for EndpointRole
impl UnwindSafe for EndpointRole
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.