pub struct UnderstandableInterface {
pub validated_count: usize,
}Expand description
A UI surface proven to satisfy all WCAG Principle 3 (Understandable) Level AA criteria.
Only constructible through WcagUnderstandableFactory::build_understandable.
Fields§
§validated_count: usizeNumber of elements included in the validation sweep.
Trait Implementations§
Source§impl Clone for UnderstandableInterface
impl Clone for UnderstandableInterface
Source§fn clone(&self) -> UnderstandableInterface
fn clone(&self) -> UnderstandableInterface
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 moreimpl Copy for UnderstandableInterface
Source§impl Debug for UnderstandableInterface
impl Debug for UnderstandableInterface
Source§impl PartialEq for UnderstandableInterface
impl PartialEq for UnderstandableInterface
Source§fn eq(&self, other: &UnderstandableInterface) -> bool
fn eq(&self, other: &UnderstandableInterface) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UnderstandableInterface
Auto Trait Implementations§
impl Freeze for UnderstandableInterface
impl RefUnwindSafe for UnderstandableInterface
impl Send for UnderstandableInterface
impl Sync for UnderstandableInterface
impl Unpin for UnderstandableInterface
impl UnsafeUnpin for UnderstandableInterface
impl UnwindSafe for UnderstandableInterface
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