pub struct SemanticsScrollToIndex { /* private fields */ }Expand description
What a list does when a screen reader asks for the row at an index, e.g. a TalkBack scroll-to-position action.
This is Compose’s SemanticsActions.ScrollToIndex. The index counts rows
from zero, and the answer says whether the list moved.
Implementations§
Trait Implementations§
Source§impl Clone for SemanticsScrollToIndex
impl Clone for SemanticsScrollToIndex
Source§fn clone(&self) -> SemanticsScrollToIndex
fn clone(&self) -> SemanticsScrollToIndex
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 SemanticsScrollToIndex
impl Debug for SemanticsScrollToIndex
impl Eq for SemanticsScrollToIndex
Source§impl PartialEq for SemanticsScrollToIndex
Two jump actions always read as the same action, for the reason
SemanticsCustomAction’s own comparison gives.
impl PartialEq for SemanticsScrollToIndex
Two jump actions always read as the same action, for the reason
SemanticsCustomAction’s own comparison gives.
Auto Trait Implementations§
impl !RefUnwindSafe for SemanticsScrollToIndex
impl !Send for SemanticsScrollToIndex
impl !Sync for SemanticsScrollToIndex
impl !UnwindSafe for SemanticsScrollToIndex
impl Freeze for SemanticsScrollToIndex
impl Unpin for SemanticsScrollToIndex
impl UnsafeUnpin for SemanticsScrollToIndex
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