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