#[repr(C)]pub struct UiDelegateV1VirtualTable {
pub Run: fn(this: *const c_void),
pub Dispose: fn(this: *const c_void),
}
Expand description
Virtual table for UI task delegate functions.
Fields§
§Run: fn(this: *const c_void)
Executes the UI task.
Dispose: fn(this: *const c_void)
Disposes of the UI task delegate.
Auto Trait Implementations§
impl Freeze for UiDelegateV1VirtualTable
impl RefUnwindSafe for UiDelegateV1VirtualTable
impl Send for UiDelegateV1VirtualTable
impl Sync for UiDelegateV1VirtualTable
impl Unpin for UiDelegateV1VirtualTable
impl UnwindSafe for UiDelegateV1VirtualTable
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