pub enum ContactEvent {
Registered,
Refreshed,
Expired,
Unregistered,
}Expand description
What happened to a registered contact (RFC 3680 §5.1).
Variants§
Registered
A new binding.
Refreshed
An existing one, refreshed.
Expired
It ran out of time.
Unregistered
It was removed deliberately.
Implementations§
Source§impl ContactEvent
impl ContactEvent
Sourcepub fn still_bound(self) -> bool
pub fn still_bound(self) -> bool
Whether the contact is usable after this event.
The distinction a watcher acts on: expired and unregistered mean the contact is gone,
and the two are kept apart because why it went is what a display says — “lost its
connection” reads differently from “logged out”.
Trait Implementations§
Source§impl Clone for ContactEvent
impl Clone for ContactEvent
Source§fn clone(&self) -> ContactEvent
fn clone(&self) -> ContactEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContactEvent
impl Debug for ContactEvent
Source§impl PartialEq for ContactEvent
impl PartialEq for ContactEvent
Source§fn eq(&self, other: &ContactEvent) -> bool
fn eq(&self, other: &ContactEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ContactEvent
impl Eq for ContactEvent
impl StructuralPartialEq for ContactEvent
Auto Trait Implementations§
impl Freeze for ContactEvent
impl RefUnwindSafe for ContactEvent
impl Send for ContactEvent
impl Sync for ContactEvent
impl Unpin for ContactEvent
impl UnsafeUnpin for ContactEvent
impl UnwindSafe for ContactEvent
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§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