pub struct KeyboardIssue {
pub description: String,
pub element: Option<String>,
pub wcag: String,
}Expand description
A keyboard navigation issue
Fields§
§description: StringDescription of the issue
element: Option<String>Element that has the issue
wcag: StringWCAG criterion
Trait Implementations§
Source§impl Clone for KeyboardIssue
impl Clone for KeyboardIssue
Source§fn clone(&self) -> KeyboardIssue
fn clone(&self) -> KeyboardIssue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for KeyboardIssue
impl RefUnwindSafe for KeyboardIssue
impl Send for KeyboardIssue
impl Sync for KeyboardIssue
impl Unpin for KeyboardIssue
impl UnsafeUnpin for KeyboardIssue
impl UnwindSafe for KeyboardIssue
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