pub struct KernelInstanceBackward {
pub name: String,
pub source: String,
}Expand description
The backward half of a KernelInstance, when a paired backward kernel is
declared via #[kernel(..., backward = ...)].
Fields§
§name: StringBackward kernel name (used to derive the entry-point symbol).
source: StringCombined backward kernel source.
Auto Trait Implementations§
impl Freeze for KernelInstanceBackward
impl RefUnwindSafe for KernelInstanceBackward
impl Send for KernelInstanceBackward
impl Sync for KernelInstanceBackward
impl Unpin for KernelInstanceBackward
impl UnsafeUnpin for KernelInstanceBackward
impl UnwindSafe for KernelInstanceBackward
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