alpine-protocol-sdk 0.1.13

High-level SDK on top of the ALPINE protocol layer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use alpine::stream::FrameTransport;

/// Placeholder QUIC transport for future SDK work.
#[derive(Debug)]
pub struct QuicFrameTransport;

impl FrameTransport for QuicFrameTransport {
    fn send_frame(&self, _bytes: &[u8]) -> Result<(), String> {
        Err("QUIC transport is not implemented yet".to_string())
    }
}