ableton-link-rs 0.1.2

Native Rust implementation of the Ableton Link protocol
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error("encoding error: {0}")]
    Encoding(#[from] bincode::error::EncodeError),
    #[error("decoding error: {0}")]
    Decoding(#[from] bincode::error::DecodeError),
}