ergot 0.12.0

Eloquence in messaging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! std serial cobs interface impl
//!
//! std serial cobs uses COBS for framing over a serial stream.

use crate::interface_manager::{
    Interface,
    utils::{cobs_stream, std::StdQueue},
};

/// An interface implementation for serial using tokio
pub struct TokioSerialInterface {}

impl Interface for TokioSerialInterface {
    type Sink = cobs_stream::Sink<StdQueue>;
}