pub struct TaskNode<W: ?Sized> { /* private fields */ }
Expand description
Implementations§
Source§impl<W: ?Sized> TaskNode<W>
impl<W: ?Sized> TaskNode<W>
Sourcepub fn queue_family_type(&self) -> QueueFamilyType
pub fn queue_family_type(&self) -> QueueFamilyType
Returns the queue family type the task node was created with.
Sourcepub fn task(&self) -> &dyn Task<World = W>
pub fn task(&self) -> &dyn Task<World = W>
Returns a reference to the task the task node was created with.
Auto Trait Implementations§
impl<W> Freeze for TaskNode<W>where
W: ?Sized,
impl<W> !RefUnwindSafe for TaskNode<W>
impl<W> Send for TaskNode<W>where
W: ?Sized,
impl<W> Sync for TaskNode<W>where
W: ?Sized,
impl<W> Unpin for TaskNode<W>where
W: ?Sized,
impl<W> !UnwindSafe for TaskNode<W>
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