pub enum EndpointKind {
V4,
V6,
Hostname,
UnixPath,
}Expand description
Address family of a ConfListen.
§Examples
use dynomite::conf::{ConfListen, EndpointKind};
assert_eq!(
ConfListen::parse("listen", "[::1]:8101").unwrap().kind(),
EndpointKind::V6,
);
assert_eq!(
ConfListen::parse("listen", "/tmp/d.sock").unwrap().kind(),
EndpointKind::UnixPath,
);Variants§
V4
IPv4 numeric address.
V6
IPv6 numeric address.
Hostname
DNS hostname; resolution is deferred.
UnixPath
Filesystem path to a Unix domain socket.
Trait Implementations§
Source§impl Clone for EndpointKind
impl Clone for EndpointKind
Source§fn clone(&self) -> EndpointKind
fn clone(&self) -> EndpointKind
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 EndpointKind
impl Debug for EndpointKind
Source§impl PartialEq for EndpointKind
impl PartialEq for EndpointKind
Source§fn eq(&self, other: &EndpointKind) -> bool
fn eq(&self, other: &EndpointKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EndpointKind
impl Eq for EndpointKind
impl StructuralPartialEq for EndpointKind
Auto Trait Implementations§
impl Freeze for EndpointKind
impl RefUnwindSafe for EndpointKind
impl Send for EndpointKind
impl Sync for EndpointKind
impl Unpin for EndpointKind
impl UnsafeUnpin for EndpointKind
impl UnwindSafe for EndpointKind
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.