1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-06-07 07:59:21 +00:00
hls_m3u8/src/error.rs
2018-02-11 15:10:52 +09:00

13 lines
344 B
Rust

use trackable::error::{ErrorKind as TrackableErrorKind, TrackableError};
#[derive(Debug, Clone)]
pub struct Error(TrackableError<ErrorKind>);
derive_traits_for_trackable_error_newtype!(Error, ErrorKind);
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ErrorKind {
InvalidInput,
Other,
}
impl TrackableErrorKind for ErrorKind {}