ergot 0.12.0

Eloquence in messaging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! std udp interface impl

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

/// An interface implementation for UDP using tokio
pub struct TokioUdpInterface {}

impl Interface for TokioUdpInterface {
    type Sink = framed_stream::Sink<StdQueue>;
}