flowly-io 0.4.13

Flowly is a library of modular and reusable components for building robust pipelines processing audio, video and other.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use flowly_core::Void;

#[derive(Debug, thiserror::Error)]
pub enum Error<E: std::error::Error + Send + Sync + 'static = Void> {
    #[error("Io Error: {0}")]
    IoError(#[from] std::io::Error),

    #[error("Glob Error: {0}")]
    GlobError(#[from] glob::GlobError),

    #[error("Glob Pattern Error: {0}")]
    GlobPatternError(#[from] glob::PatternError),

    #[error(transparent)]
    Other(E),
}