pub trait IntoOwnedChanTarget {
    fn to_owned(self) -> OwnedChanTarget;

    fn to_logged(self) -> LoggedChanTarget
    where
        Self: Sized
, { ... } }
Expand description

A value that can be converted into an OwnedChanTarget.

Required Methods§

Convert this value into an OwnedChanTarget.

Provided Methods§

Convert this value into an LoggedChanTarget.

Implementations on Foreign Types§

Implementors§