pub struct SubmittedWorkDoneClosure { /* private fields */ }
Implementations
sourceimpl SubmittedWorkDoneClosure
impl SubmittedWorkDoneClosure
pub fn from_rust(callback: Box<dyn FnOnce() + Send + 'static>) -> Self
sourcepub unsafe fn from_c(inner: SubmittedWorkDoneClosureC) -> Self
pub unsafe fn from_c(inner: SubmittedWorkDoneClosureC) -> Self
Safety
- The callback pointer must be valid to call with the provided user_data pointer.
- Both pointers must point to ’static data as the callback may happen at an unspecified time.
Auto Trait Implementations
impl !RefUnwindSafe for SubmittedWorkDoneClosure
impl Send for SubmittedWorkDoneClosure
impl !Sync for SubmittedWorkDoneClosure
impl Unpin for SubmittedWorkDoneClosure
impl !UnwindSafe for SubmittedWorkDoneClosure
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more