#[repr(C)]pub struct RamdiskEntry {
pub name: [u8; 32],
pub offset: u32,
pub size: u32,
}
Expand description
Describes a file held in the ramdisk.
Fields§
§name: [u8; 32]
The UTF-8 encoded name of the file. Must be null-terminated.
offset: u32
§size: u32
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RamdiskEntry
impl RefUnwindSafe for RamdiskEntry
impl Send for RamdiskEntry
impl Sync for RamdiskEntry
impl Unpin for RamdiskEntry
impl UnwindSafe for RamdiskEntry
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