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