pub struct DispatcherRef<'a>(/* private fields */);
Expand description
An unowned reference to a driver runtime dispatcher such as is produced by calling
Dispatcher::release
. When this object goes out of scope it won’t shut down the dispatcher,
leaving that up to the driver runtime or another owner.
Implementations§
Source§impl<'a> DispatcherRef<'a>
impl<'a> DispatcherRef<'a>
Sourcepub unsafe fn from_raw(handle: NonNull<fdf_dispatcher_t>) -> Self
pub unsafe fn from_raw(handle: NonNull<fdf_dispatcher_t>) -> Self
Creates a dispatcher ref from a raw handle.
§Safety
Caller is responsible for ensuring that the given handle is valid for
the lifetime 'a
.
Methods from Deref<Target = Dispatcher>§
Sourcepub fn is_unsynchronized(&self) -> bool
pub fn is_unsynchronized(&self) -> bool
Whether this dispatcher’s tasks and futures can run on multiple threads at the same time.
Sourcepub fn allows_thread_blocking(&self) -> bool
pub fn allows_thread_blocking(&self) -> bool
Whether this dispatcher is allowed to call blocking functions or not
pub fn post_task_sync<'a>(&self, p: impl TaskCallback<'a>) -> Result<(), Status>
pub fn spawn_task<'a>( &'a self, future: impl Future<Output = ()> + 'a + Send, ) -> Result<(), Status>
Sourcepub fn as_ref(&self) -> DispatcherRef<'_>
pub fn as_ref(&self) -> DispatcherRef<'_>
Returns a DispatcherRef
that references this dispatcher with a lifetime constrained by
self
.
Trait Implementations§
Source§impl<'a> Clone for DispatcherRef<'a>
impl<'a> Clone for DispatcherRef<'a>
Source§impl<'a> Debug for DispatcherRef<'a>
impl<'a> Debug for DispatcherRef<'a>
Source§impl<'a> Deref for DispatcherRef<'a>
impl<'a> Deref for DispatcherRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for DispatcherRef<'a>
impl<'a> RefUnwindSafe for DispatcherRef<'a>
impl<'a> Send for DispatcherRef<'a>
impl<'a> Sync for DispatcherRef<'a>
impl<'a> Unpin for DispatcherRef<'a>
impl<'a> UnwindSafe for DispatcherRef<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)