pub struct RomCopyInfoList {
pub offset: u32,
pub entries: Vec<RomCopyInfo>,
}Expand description
List of RomCopyInfo entries.
Fields§
§offset: u32The offset of __rom_copy_info in the .init section.
entries: Vec<RomCopyInfo>Entries in the __rom_copy_info symbol.
Trait Implementations§
Source§impl Clone for RomCopyInfoList
impl Clone for RomCopyInfoList
Source§fn clone(&self) -> RomCopyInfoList
fn clone(&self) -> RomCopyInfoList
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RomCopyInfoList
impl RefUnwindSafe for RomCopyInfoList
impl Send for RomCopyInfoList
impl Sync for RomCopyInfoList
impl Unpin for RomCopyInfoList
impl UnwindSafe for RomCopyInfoList
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