Enum zng_view_api::access::LiveIndicator
source · pub enum LiveIndicator {
Assertive,
OnlyFocused,
Polite,
}Expand description
Defines how a live update is communicated to the user.
Variants§
Assertive
Indicates that updates to the region have the highest priority and should be presented to the user immediately.
OnlyFocused
Indicates that updates to the region should not be presented to the user unless the user is currently focused on that region.
Polite
Indicates that updates to the region should be presented at the next graceful opportunity, such as at the end of speaking the current sentence or when the user pauses typing.
Trait Implementations§
source§impl Clone for LiveIndicator
impl Clone for LiveIndicator
source§fn clone(&self) -> LiveIndicator
fn clone(&self) -> LiveIndicator
Returns a copy 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 moresource§impl Debug for LiveIndicator
impl Debug for LiveIndicator
source§impl<'de> Deserialize<'de> for LiveIndicator
impl<'de> Deserialize<'de> for LiveIndicator
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for LiveIndicator
impl Hash for LiveIndicator
source§impl PartialEq for LiveIndicator
impl PartialEq for LiveIndicator
source§fn eq(&self, other: &LiveIndicator) -> bool
fn eq(&self, other: &LiveIndicator) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for LiveIndicator
impl Serialize for LiveIndicator
impl Copy for LiveIndicator
impl Eq for LiveIndicator
impl StructuralPartialEq for LiveIndicator
Auto Trait Implementations§
impl Freeze for LiveIndicator
impl RefUnwindSafe for LiveIndicator
impl Send for LiveIndicator
impl Sync for LiveIndicator
impl Unpin for LiveIndicator
impl UnwindSafe for LiveIndicator
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