stream_processor_test/
lib.rs1mod buffer_collection_constraints;
6mod buffer_set;
7mod elementary_stream;
8mod input_packet_stream;
9mod output_validator;
10mod stream;
11mod stream_runner;
12mod test_spec;
13
14pub use crate::buffer_collection_constraints::*;
15pub use crate::buffer_set::*;
16pub use crate::elementary_stream::*;
17pub use crate::output_validator::*;
18pub use crate::stream::*;
19pub use crate::stream_runner::*;
20pub use crate::test_spec::*;
21
22use thiserror::Error;
23
24pub type Result<T> = std::result::Result<T, anyhow::Error>;
25
26#[derive(Error, Debug)]
27#[error("FatalError: {}", _0)]
28pub struct FatalError(pub String);