kiss-tnc 0.1.2

A library to connect to KISS TNCs, such as Direwolf
Documentation
1
2
3
4
5
6
7
8
9
10
use thiserror::Error;

#[derive(Error, Debug)]
pub enum ReadError {
	#[error("Data received from TNC is not valid")]
	MalformedData,

	#[error("Stream error: {0}")]
	StreamError(#[from] std::io::Error),
}