Enum libp2p_kad::RoutingUpdate
source · 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 copy 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
source§fn eq(&self, other: &RoutingUpdate) -> bool
fn eq(&self, other: &RoutingUpdate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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