#[repr(C)]pub struct Note<const N: usize, const D: usize> {
hdr: NoteHdr,
name: [u8; N],
desc: NoteDesc<D>,
}
Expand description
Single ELF note.
Fields§
§hdr: NoteHdr
§name: [u8; N]
§desc: NoteDesc<D>
Implementations§
Auto Trait Implementations§
impl<const N: usize, const D: usize> Freeze for Note<N, D>
impl<const N: usize, const D: usize> RefUnwindSafe for Note<N, D>
impl<const N: usize, const D: usize> Send for Note<N, D>
impl<const N: usize, const D: usize> Sync for Note<N, D>
impl<const N: usize, const D: usize> Unpin for Note<N, D>
impl<const N: usize, const D: usize> UnwindSafe for Note<N, D>
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