#[repr(C)]pub struct ArkUI_AccessibleGridItemInfo {
pub heading: bool,
pub selected: bool,
pub columnIndex: i32,
pub rowIndex: i32,
pub columnSpan: i32,
pub rowSpan: i32,
}Available on crate feature
api-13 only.Expand description
Defines a struct for the accessible grid item information.
Available since API-level: 13
Fields§
§heading: boolWhether it is a header.
selected: boolWhether it is selected.
columnIndex: i32Column index.
rowIndex: i32Row index.
columnSpan: i32Column span.
rowSpan: i32Row span.
Auto Trait Implementations§
impl Freeze for ArkUI_AccessibleGridItemInfo
impl RefUnwindSafe for ArkUI_AccessibleGridItemInfo
impl Send for ArkUI_AccessibleGridItemInfo
impl Sync for ArkUI_AccessibleGridItemInfo
impl Unpin for ArkUI_AccessibleGridItemInfo
impl UnwindSafe for ArkUI_AccessibleGridItemInfo
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