pub trait CanSocketTx { type Frame: Frame; type Error: Error; // Required method fn transmit( &mut self, frame: &Self::Frame, ) -> Result<Option<Self::Frame>, Self::Error>; }
Associated frame type.
Associated error type.