pub enum NoOutgoing {}Expand description
A type with no possible values.
This is used to indicate that ConnectChannelRequest::Outgoing does not exist,
that is, we do not send messages through that channel.
In the future when ! is stabilized, this may be an alias for !.
Trait Implementations§
Source§impl Clone for NoOutgoing
impl Clone for NoOutgoing
Source§fn clone(&self) -> NoOutgoing
fn clone(&self) -> NoOutgoing
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 NoOutgoing
impl Debug for NoOutgoing
Source§impl Hash for NoOutgoing
impl Hash for NoOutgoing
Source§impl Ord for NoOutgoing
impl Ord for NoOutgoing
Source§fn cmp(&self, other: &NoOutgoing) -> Ordering
fn cmp(&self, other: &NoOutgoing) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NoOutgoing
impl PartialEq for NoOutgoing
Source§impl PartialOrd for NoOutgoing
impl PartialOrd for NoOutgoing
Source§impl Serialize for NoOutgoing
impl Serialize for NoOutgoing
impl Eq for NoOutgoing
impl StructuralPartialEq for NoOutgoing
Auto Trait Implementations§
impl Freeze for NoOutgoing
impl RefUnwindSafe for NoOutgoing
impl Send for NoOutgoing
impl Sync for NoOutgoing
impl Unpin for NoOutgoing
impl UnwindSafe for NoOutgoing
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