#[repr(C)]pub struct fw_chunk {
pub type_: mem_type,
pub addr: u32,
pub size: u32,
pub fill_size: u32,
pub next: *mut fw_chunk,
pub data: [u8; 1],
}
Fields§
§type_: mem_type
§addr: u32
§size: u32
§fill_size: u32
§next: *mut fw_chunk
§data: [u8; 1]
Trait Implementations§
Auto Trait Implementations§
impl Freeze for fw_chunk
impl RefUnwindSafe for fw_chunk
impl !Send for fw_chunk
impl !Sync for fw_chunk
impl Unpin for fw_chunk
impl UnwindSafe for fw_chunk
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