concordance 0.1.0

A library for negotiating HDMI 2.1 modes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Fatal error type for concordance API entry points.

/// Fatal errors returned from fallible API entry points.
#[non_exhaustive]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Debug, thiserror::Error)]
pub enum Error {
    /// The capability inputs were internally inconsistent in a way that prevents negotiation.
    #[error("capability inputs were internally inconsistent")]
    InvalidCapabilities,
}