pub struct KernelPaths {
pub kernel_image: PathBuf,
pub initramfs: Option<PathBuf>,
pub kernel_config: PathBuf,
pub kernel_src: PathBuf,
pub linux_symlink: PathBuf,
}Fields§
§kernel_image: PathBuf§initramfs: Option<PathBuf>§kernel_config: PathBuf§kernel_src: PathBuf§linux_symlink: PathBufImplementations§
Trait Implementations§
Source§impl Clone for KernelPaths
impl Clone for KernelPaths
Source§fn clone(&self) -> KernelPaths
fn clone(&self) -> KernelPaths
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for KernelPaths
impl RefUnwindSafe for KernelPaths
impl Send for KernelPaths
impl Sync for KernelPaths
impl Unpin for KernelPaths
impl UnsafeUnpin for KernelPaths
impl UnwindSafe for KernelPaths
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