[][src]Struct spirit_tokio::net::unix::UnixListen

pub struct UnixListen<ExtraCfg = Empty, UnixStreamConfig = UnixConfig> {
    pub extra_cfg: ExtraCfg,
    // some fields omitted
}

A listener for unix domain stream sockets.

This is the unix-domain equivalent of TcpListen. All notes about it apply here with the sole difference that the fields added by it are from unix::Listen instead of net::Listen.

Fields

extra_cfg: ExtraCfg

Arbitrary additional application-specific configuration that doesn't influence the socket.

But it can be looked into by the handlers.

Trait Implementations

impl<ExtraCfg: Clone, UnixStreamConfig: Clone> Clone for UnixListen<ExtraCfg, UnixStreamConfig>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<ExtraCfg: PartialEq, UnixStreamConfig: PartialEq> PartialEq<UnixListen<ExtraCfg, UnixStreamConfig>> for UnixListen<ExtraCfg, UnixStreamConfig>[src]

impl<ExtraCfg: PartialOrd, UnixStreamConfig: PartialOrd> PartialOrd<UnixListen<ExtraCfg, UnixStreamConfig>> for UnixListen<ExtraCfg, UnixStreamConfig>[src]

impl<ExtraCfg: Ord, UnixStreamConfig: Ord> Ord for UnixListen<ExtraCfg, UnixStreamConfig>[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Returns max if self is greater than max, and min if self is less than min. Otherwise this will return self. Panics if min > max. Read more

impl<ExtraCfg: Eq, UnixStreamConfig: Eq> Eq for UnixListen<ExtraCfg, UnixStreamConfig>[src]

impl<ExtraCfg: Default, UnixStreamConfig: Default> Default for UnixListen<ExtraCfg, UnixStreamConfig>[src]

impl<ExtraCfg: Hash, UnixStreamConfig: Hash> Hash for UnixListen<ExtraCfg, UnixStreamConfig>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<ExtraCfg: Debug, UnixStreamConfig: Debug> Debug for UnixListen<ExtraCfg, UnixStreamConfig>[src]

impl<ExtraCfg, UnixStreamConfig> Serialize for UnixListen<ExtraCfg, UnixStreamConfig> where
    ExtraCfg: Serialize,
    UnixStreamConfig: Serialize
[src]

impl<'de, ExtraCfg, UnixStreamConfig> Deserialize<'de> for UnixListen<ExtraCfg, UnixStreamConfig> where
    ExtraCfg: Deserialize<'de>,
    UnixStreamConfig: Deserialize<'de>, 
[src]

impl<ExtraCfg, UnixStreamConfig> Comparable<UnixListen<ExtraCfg, UnixStreamConfig>> for UnixListen<ExtraCfg, UnixStreamConfig> where
    ExtraCfg: PartialEq,
    UnixStreamConfig: PartialEq
[src]

impl<ExtraCfg, UnixStreamConfig> Fragment for UnixListen<ExtraCfg, UnixStreamConfig> where
    ExtraCfg: Clone + Debug + PartialEq,
    UnixStreamConfig: Clone + Debug + PartialEq
[src]

type Driver = CacheSimilar<Self>

The default driver to be used by the fragment. Read more

type Installer = ()

The default installer to be used unless a transformation or the user doesn't provide one. Read more

type Seed = StdUnixListener

The intermediate product if the fragment supports two-stage creation of [Resource][Fragment::Resource]s. If not, it can be set to (). Read more

type Resource = ConfiguredStreamListener<UnixListener, UnixStreamConfig>

The actual product this [Fragment] creates.

const RUN_BEFORE_CONFIG: bool[src]

Configuration if the pipeline should be run once even before the config is loaded. Read more

fn create(&self, name: &'static str) -> Result<Self::Resource, Error>[src]

Runs both stages of creation at once. Read more

fn init<B>(builder: B, &'static str) -> Result<B, Error> where
    B: Extensible<Ok = B>,
    <B as Extensible>::Config: DeserializeOwned,
    <B as Extensible>::Config: Send,
    <B as Extensible>::Config: Sync,
    <B as Extensible>::Config: 'static,
    <B as Extensible>::Opts: StructOpt,
    <B as Extensible>::Opts: Send,
    <B as Extensible>::Opts: Sync,
    <B as Extensible>::Opts: 'static, 
[src]

An initialization routine. Read more

impl<ExtraCfg, UnixStreamConfig> Stackable for UnixListen<ExtraCfg, UnixStreamConfig>[src]

impl<ExtraCfg, UnixStreamConfig> StructDoc for UnixListen<ExtraCfg, UnixStreamConfig> where
    ExtraCfg: StructDoc,
    UnixStreamConfig: StructDoc
[src]

Auto Trait Implementations

impl<ExtraCfg, UnixStreamConfig> Send for UnixListen<ExtraCfg, UnixStreamConfig> where
    ExtraCfg: Send,
    UnixStreamConfig: Send

impl<ExtraCfg, UnixStreamConfig> Sync for UnixListen<ExtraCfg, UnixStreamConfig> where
    ExtraCfg: Sync,
    UnixStreamConfig: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> IntoResult for T[src]

impl<F> Optional for F where
    F: Stackable
[src]

impl<T> Erased for T