pub struct TritonKernel {
pub name: &'static str,
pub sig: &'static str,
pub block_str: &'static str,
}Expand description
A compiled kernel’s identity: its name, type signature, and generated source block.
Fields§
§name: &'static strThe kernel’s name.
sig: &'static strThe kernel’s type signature.
block_str: &'static strThe generated DSL source block for this kernel.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TritonKernel
impl RefUnwindSafe for TritonKernel
impl Send for TritonKernel
impl Sync for TritonKernel
impl Unpin for TritonKernel
impl UnsafeUnpin for TritonKernel
impl UnwindSafe for TritonKernel
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