pub enum RoutingUpdate {
Success,
Pending,
Failed,
}Expand description
The possible outcomes of Behaviour::add_address.
Variants§
Success
The given peer and address has been added to the routing table.
Pending
The peer and address is pending insertion into
the routing table, if a disconnected peer fails
to respond. If the given peer and address ends up
in the routing table, Event::RoutingUpdated
is eventually emitted.
Failed
The routing table update failed, either because the corresponding bucket for the peer is full and the pending slot(s) are occupied, or because the given peer ID is deemed invalid (e.g. refers to the local peer ID).
Trait Implementations§
Source§impl Clone for RoutingUpdate
impl Clone for RoutingUpdate
Source§fn clone(&self) -> RoutingUpdate
fn clone(&self) -> RoutingUpdate
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 RoutingUpdate
impl Debug for RoutingUpdate
Source§impl PartialEq for RoutingUpdate
impl PartialEq for RoutingUpdate
impl Copy for RoutingUpdate
impl Eq for RoutingUpdate
impl StructuralPartialEq for RoutingUpdate
Auto Trait Implementations§
impl Freeze for RoutingUpdate
impl RefUnwindSafe for RoutingUpdate
impl Send for RoutingUpdate
impl Sync for RoutingUpdate
impl Unpin for RoutingUpdate
impl UnwindSafe for RoutingUpdate
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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