pub enum Naming {
Alt,
TextOrLabel,
Label,
}Expand description
How one element is given a name a screen reader can announce.
Variants§
Alt
alt, which HTML requires of every image and whose empty value means “decorative”.
TextOrLabel
Its own text, or a label attribute when it has none — the icon-button case.
Label
A label attribute, or an id a label(for=…) elsewhere points at.
Trait Implementations§
impl Copy for Naming
impl Eq for Naming
impl StructuralPartialEq for Naming
Auto Trait Implementations§
impl Freeze for Naming
impl RefUnwindSafe for Naming
impl Send for Naming
impl Sync for Naming
impl Unpin for Naming
impl UnwindSafe for Naming
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