pub struct QueuedEvents(/* private fields */);Expand description
Events generated by a tree update or accessibility action.
Implementations§
Source§impl QueuedEvents
impl QueuedEvents
Sourcepub fn raise(self, env: &mut JNIEnv<'_>, host: &JObject<'_>)
pub fn raise(self, env: &mut JNIEnv<'_>, host: &JObject<'_>)
Raise all queued events.
The host parameter is the Android view for the adapter that
returned this struct. It must be an instance of android.view.View
or a subclass.
This function must be called on the Android UI thread, while not holding any locks required by the host view’s implementations of Android framework callbacks.
Auto Trait Implementations§
impl Freeze for QueuedEvents
impl RefUnwindSafe for QueuedEvents
impl Send for QueuedEvents
impl Sync for QueuedEvents
impl Unpin for QueuedEvents
impl UnwindSafe for QueuedEvents
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