Skip to main content

FrameIo

Trait FrameIo 

Source
pub trait FrameIo: TxFrameIo<Frame = <Self as RxFrameIo>::Frame, Error = <Self as RxFrameIo>::Error> + RxFrameIo { }
Expand description

Convenience marker for types that implement both TxFrameIo and RxFrameIo using the same frame and error types.

This is a marker trait only; it has no methods and exists to reduce boilerplate in bounds.

Implementors§

Source§

impl<T> FrameIo for T
where T: TxFrameIo<Frame = <T as RxFrameIo>::Frame, Error = <T as RxFrameIo>::Error> + RxFrameIo,