pub struct A11yIssue {
pub tag: String,
pub message: String,
}Expand description
Something in the tree that will be hard or impossible to use with assistive technology.
Fields§
§tag: StringThe tag the problem was found on.
message: StringWhat is wrong, in one sentence.
Trait Implementations§
impl Eq for A11yIssue
impl StructuralPartialEq for A11yIssue
Auto Trait Implementations§
impl Freeze for A11yIssue
impl RefUnwindSafe for A11yIssue
impl Send for A11yIssue
impl Sync for A11yIssue
impl Unpin for A11yIssue
impl UnsafeUnpin for A11yIssue
impl UnwindSafe for A11yIssue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more