pub trait WcagOperableFactory: Send + Sync {
// Required method
fn build_operable(
&self,
evidence: OperableEvidence,
) -> (OperableInterface, Established<WcagOperableValid>);
}Expand description
Converts leaf-factory evidence into a Principle 2 (Operable) proof.
Source: WCAG 2.2 Principle 2 — Operable
Required Methods§
Sourcefn build_operable(
&self,
evidence: OperableEvidence,
) -> (OperableInterface, Established<WcagOperableValid>)
fn build_operable( &self, evidence: OperableEvidence, ) -> (OperableInterface, Established<WcagOperableValid>)
Combine Principle 2 evidence into an operable-interface construct.
Source: WCAG 2.2 Principle 2 — Operable
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".