pub struct ToolkitGap {
pub root: PathBuf,
pub headers: Vec<String>,
pub install: String,
}Expand description
A vendor toolkit gap on THIS box: the headers a --features <vendor> compile will not find, and the line that installs them.
Fields§
§root: PathBufToolkit root the check ran against.
headers: Vec<String>Missing headers, as printed to the operator.
install: StringThe full install line (install_hint over the owning
packages; the NVIDIA arm uses the cuda-toolkit metapackage
since the per-header names carry version placeholders).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ToolkitGap
impl RefUnwindSafe for ToolkitGap
impl Send for ToolkitGap
impl Sync for ToolkitGap
impl Unpin for ToolkitGap
impl UnsafeUnpin for ToolkitGap
impl UnwindSafe for ToolkitGap
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