pub struct CriterionEntry {
pub criterion: String,
pub level: String,
pub title: String,
pub status: CriterionStatus,
pub all_pages_pass: bool,
}Expand description
One row of the WCAG 2.2 compliance matrix.
Fields§
§criterion: StringSC identifier (e.g. “1.1.1”, “2.5.8”).
level: StringConformance level: A, AA, AAA.
title: StringShort title of the criterion.
status: CriterionStatusVerification status.
all_pages_pass: boolTrue if every scanned page passed (only meaningful for Automated).
Trait Implementations§
Source§impl Clone for CriterionEntry
impl Clone for CriterionEntry
Source§fn clone(&self) -> CriterionEntry
fn clone(&self) -> CriterionEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CriterionEntry
impl Debug for CriterionEntry
Source§impl<'de> Deserialize<'de> for CriterionEntry
impl<'de> Deserialize<'de> for CriterionEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CriterionEntry
impl RefUnwindSafe for CriterionEntry
impl Send for CriterionEntry
impl Sync for CriterionEntry
impl Unpin for CriterionEntry
impl UnsafeUnpin for CriterionEntry
impl UnwindSafe for CriterionEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more