pub struct VerifiedKernel {
pub header: KernelHeader,
pub arch: KernelArch,
pub kernel_type: KernelType,
pub image_size: u64,
}Expand description
A kernel that has passed hash verification.
Fields§
§header: KernelHeaderThe parsed kernel header.
arch: KernelArchThe target architecture.
kernel_type: KernelTypeThe kernel type.
image_size: u64Size of the verified image in bytes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VerifiedKernel
impl RefUnwindSafe for VerifiedKernel
impl Send for VerifiedKernel
impl Sync for VerifiedKernel
impl Unpin for VerifiedKernel
impl UnwindSafe for VerifiedKernel
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