pub enum RpChannel<F>where
F: Flavor + 'static,{
Unary {
ty: F::Type,
},
Streaming {
ty: F::Type,
},
}
Variants§
Implementations§
Trait Implementations§
Source§impl<F, T> Translate<T> for RpChannel<F>where
F: Flavor + 'static,
T: Translator<Source = F>,
impl<F, T> Translate<T> for RpChannel<F>where
F: Flavor + 'static,
T: Translator<Source = F>,
impl<F> Eq for RpChannel<F>
impl<F> StructuralPartialEq for RpChannel<F>where
F: Flavor + 'static,
Auto Trait Implementations§
impl<F> Freeze for RpChannel<F>
impl<F> RefUnwindSafe for RpChannel<F>
impl<F> Send for RpChannel<F>
impl<F> Sync for RpChannel<F>
impl<F> Unpin for RpChannel<F>
impl<F> UnwindSafe for RpChannel<F>
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