#[repr(C)]pub struct RamdiskHeader {
pub magic: [u8; 8],
pub size: u32,
pub num_entries: u32,
}Fields§
§magic: [u8; 8]§size: u32The total size of the ramdisk, including this header, the entry table, and all of the entries.
num_entries: u32Implementations§
Auto Trait Implementations§
impl Freeze for RamdiskHeader
impl RefUnwindSafe for RamdiskHeader
impl Send for RamdiskHeader
impl Sync for RamdiskHeader
impl Unpin for RamdiskHeader
impl UnwindSafe for RamdiskHeader
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