pub struct ConfigHandle<'a> {
pub config: Config<'a>,
pub raw_kernel: &'a [u8],
}Available on crate feature
loader only.Expand description
Parsed data from an image
Fields§
§config: Config<'a>The image configuration
raw_kernel: &'a [u8]The raw kernel ELF slice
Auto Trait Implementations§
impl<'a> Freeze for ConfigHandle<'a>
impl<'a> RefUnwindSafe for ConfigHandle<'a>
impl<'a> Send for ConfigHandle<'a>
impl<'a> Sync for ConfigHandle<'a>
impl<'a> Unpin for ConfigHandle<'a>
impl<'a> UnwindSafe for ConfigHandle<'a>
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