pub struct SemanticsScrollBy { /* private fields */ }Expand description
What a container does when a screen reader pages it, e.g. TalkBack’s scroll forward action or an accesskit scroll down. The two deltas are in layout pixels; the answer says whether anything moved.
This is Compose’s SemanticsActions.ScrollBy.
Implementations§
Trait Implementations§
Source§impl Clone for SemanticsScrollBy
impl Clone for SemanticsScrollBy
Source§fn clone(&self) -> SemanticsScrollBy
fn clone(&self) -> SemanticsScrollBy
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 SemanticsScrollBy
impl Debug for SemanticsScrollBy
impl Eq for SemanticsScrollBy
Source§impl PartialEq for SemanticsScrollBy
Two scroll actions always read as the same action, for the reason
SemanticsCustomAction’s own comparison gives.
impl PartialEq for SemanticsScrollBy
Two scroll actions always read as the same action, for the reason
SemanticsCustomAction’s own comparison gives.
Auto Trait Implementations§
impl !RefUnwindSafe for SemanticsScrollBy
impl !Send for SemanticsScrollBy
impl !Sync for SemanticsScrollBy
impl !UnwindSafe for SemanticsScrollBy
impl Freeze for SemanticsScrollBy
impl Unpin for SemanticsScrollBy
impl UnsafeUnpin for SemanticsScrollBy
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