sipp-rs 0.1.0

Unified Rust library for extensible Sipp inference
1
2
3
4
5
6
7
8
9
10
/// Tri-state capability used by providers and endpoint resolution.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum CapabilitySupport {
    /// The endpoint is known to support the operation.
    Supported,
    /// The endpoint is known not to support the operation.
    Unsupported,
    /// The endpoint's support is not known without attempting the operation.
    Unknown,
}