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)
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 PartialEq for EndpointRole
impl PartialEq 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