pub struct SelectionRegionSemantics {
pub excluded: bool,
pub separator: String,
}Expand description
Marks a semantic subtree as one coordinated read-only text selection region.
Fields§
§excluded: boolExcluded regions prevent an ancestor region from selecting this subtree.
separator: StringText inserted between selectable descendants when copying or exposing the region as one accessibility value.
Trait Implementations§
Source§impl Clone for SelectionRegionSemantics
impl Clone for SelectionRegionSemantics
Source§fn clone(&self) -> SelectionRegionSemantics
fn clone(&self) -> SelectionRegionSemantics
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 SelectionRegionSemantics
impl Debug for SelectionRegionSemantics
Source§impl<'de> Deserialize<'de> for SelectionRegionSemantics
impl<'de> Deserialize<'de> for SelectionRegionSemantics
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
impl Eq for SelectionRegionSemantics
Source§impl Hash for SelectionRegionSemantics
impl Hash for SelectionRegionSemantics
Source§impl PartialEq for SelectionRegionSemantics
impl PartialEq for SelectionRegionSemantics
Source§impl Serialize for SelectionRegionSemantics
impl Serialize for SelectionRegionSemantics
impl StructuralPartialEq for SelectionRegionSemantics
Auto Trait Implementations§
impl Freeze for SelectionRegionSemantics
impl RefUnwindSafe for SelectionRegionSemantics
impl Send for SelectionRegionSemantics
impl Sync for SelectionRegionSemantics
impl Unpin for SelectionRegionSemantics
impl UnsafeUnpin for SelectionRegionSemantics
impl UnwindSafe for SelectionRegionSemantics
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