#[repr(C)]#[derive(Debug)]/// Response to [KernelAddressRequest]
pubstructKernelAddressResponse{/// The response revision number
pubrevision:u64,
/// The physical base of the kernel
pubphysical_base:u64,
/// The virtual base of the kernel
pubvirtual_base:u64,
}