pub struct BuildResult {
pub ptx_path: PathBuf,
pub module_path: PathBuf,
pub kernel_names: Vec<String>,
}Expand description
Result of a successful build.
Fields§
§ptx_path: PathBufPath to the generated PTX file in OUT_DIR.
module_path: PathBufPath to the generated Rust module in OUT_DIR.
kernel_names: Vec<String>Names of kernel entry points found in the PTX.
Auto Trait Implementations§
impl Freeze for BuildResult
impl RefUnwindSafe for BuildResult
impl Send for BuildResult
impl Sync for BuildResult
impl Unpin for BuildResult
impl UnsafeUnpin for BuildResult
impl UnwindSafe for BuildResult
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