pub trait SerialWrite: Write<u8, Error = Infallible> + Send + Sync + 'static { }

Implementors§

source§

impl<T> SerialWrite for Twhere T: Write<u8, Error = Infallible> + Send + Sync + 'static,