//! std serial cobs interface impl
//!//! std serial cobs uses COBS for framing over a serial stream.
usecrate::interface_manager::{
Interface,utils::{cobs_stream,std::StdQueue},};/// An interface implementation for serial using tokio
pubstructTokioSerialInterface{}implInterface forTokioSerialInterface{typeSink=cobs_stream::Sink<StdQueue>;}