[][src]Trait in_stream::InStreamConfig

pub trait InStreamConfig: 'static + Sized + Debug + Send {
    fn from_any(any: InStreamConfigAny) -> Result<Self> { ... }
fn from_gen<C: InStreamConfig>(c: C) -> Result<Self> { ... }
fn to_any(self) -> InStreamConfigAny { ... } }

mixin helper for converting structs into an Any and back again

Provided methods

fn from_any(any: InStreamConfigAny) -> Result<Self>

given an any, attempt to downcast to a concrete type

fn from_gen<C: InStreamConfig>(c: C) -> Result<Self>

convert a generic type into a concrete one

fn to_any(self) -> InStreamConfigAny

convert this type into an any

Loading content...

Implementations on Foreign Types

impl InStreamConfig for ()[src]

Loading content...

Implementors

impl InStreamConfig for MemBindConfig[src]

impl InStreamConfig for MemConnectConfig[src]

impl InStreamConfig for TcpBindConfig[src]

impl InStreamConfig for TcpConnectConfig[src]

impl InStreamConfig for TlsBindConfig[src]

impl InStreamConfig for TlsConnectConfig[src]

impl InStreamConfig for WssBindConfig[src]

impl InStreamConfig for WssConnectConfig[src]

impl InStreamConfig for InStreamConfigAny[src]

Loading content...