pub trait SerialFactory<E>:
Write<Error = E>
+ Read<Error = E>
+ Send
+ 'static {
// Required method
fn try_new(config: Option<&ComponentConfig>) -> CuResult<Self>
where Self: Sized;
}Required Methods§
Implementors§
impl SerialFactory<Error> for StdSerial
Available on crate feature
std only.