pub struct PaneAnnouncement {
pub text: String,
pub category: PaneAnnouncementCategory,
}Expand description
A concise, host-agnostic accessibility announcement for a pane state change.
The web host renders text into an aria-live region; the terminal host
surfaces it via a status line / log hook.
Fields§
§text: StringThe human-readable announcement text.
category: PaneAnnouncementCategoryThe announcement category.
Trait Implementations§
Source§impl Clone for PaneAnnouncement
impl Clone for PaneAnnouncement
Source§fn clone(&self) -> PaneAnnouncement
fn clone(&self) -> PaneAnnouncement
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 moreSource§impl Debug for PaneAnnouncement
impl Debug for PaneAnnouncement
impl Eq for PaneAnnouncement
Source§impl PartialEq for PaneAnnouncement
impl PartialEq for PaneAnnouncement
Source§fn eq(&self, other: &PaneAnnouncement) -> bool
fn eq(&self, other: &PaneAnnouncement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PaneAnnouncement
Auto Trait Implementations§
impl Freeze for PaneAnnouncement
impl RefUnwindSafe for PaneAnnouncement
impl Send for PaneAnnouncement
impl Sync for PaneAnnouncement
impl Unpin for PaneAnnouncement
impl UnsafeUnpin for PaneAnnouncement
impl UnwindSafe for PaneAnnouncement
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