pub struct OnReadyEntry {
pub callback: OnReadyCallback,
pub triggered: bool,
}Expand description
Entry for on_ready callbacks
Fields§
§callback: OnReadyCallbackThe callback to invoke when the element is ready
triggered: boolWhether this callback has been triggered (only fires once)
Auto Trait Implementations§
impl Freeze for OnReadyEntry
impl !RefUnwindSafe for OnReadyEntry
impl Send for OnReadyEntry
impl Sync for OnReadyEntry
impl Unpin for OnReadyEntry
impl UnsafeUnpin for OnReadyEntry
impl !UnwindSafe for OnReadyEntry
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