pub type DsdSourceError = Box<dyn Error + Send + Sync + 'static>;Expand description
Error type returned by DsdSource methods.
A boxed, Send + Sync trait object is used so that implementers can
wrap their own error types (std::io::Error, or a crate-specific error
enum) without this crate needing to know about them.
Aliased Typeยง
pub struct DsdSourceError(/* private fields */);