ytls_extensions/
error.rs

1//! errors
2
3#[derive(Debug, PartialEq)]
4pub enum TlsExtError {
5    /// Invalid Extension data length
6    InvalidLength,
7    /// No available data (e.g. empty)
8    NoData,
9    /// One of the entries overflows
10    EntryOverflow,
11}