pub struct LibraryEntry<'a> { /* private fields */ }Expand description
A library version string entry after the build info of an ARM9 program.
Implementations§
Source§impl<'a> LibraryEntry<'a>
impl<'a> LibraryEntry<'a>
Sourcepub fn new(address: u32, version_string: &'a str) -> Self
pub fn new(address: u32, version_string: &'a str) -> Self
Creates a new LibraryEntry.
Sourcepub fn address(&self) -> u32
pub fn address(&self) -> u32
Returns the address of this LibraryEntry.
Sourcepub fn version_string(&self) -> &'a str
pub fn version_string(&self) -> &'a str
Returns the version string of this LibraryEntry.
Sourcepub fn display(&'a self, indent: usize) -> DisplayLibraryEntry<'a>
pub fn display(&'a self, indent: usize) -> DisplayLibraryEntry<'a>
Returns a DisplayLibraryEntry which implements Display.
Auto Trait Implementations§
impl<'a> Freeze for LibraryEntry<'a>
impl<'a> RefUnwindSafe for LibraryEntry<'a>
impl<'a> Send for LibraryEntry<'a>
impl<'a> Sync for LibraryEntry<'a>
impl<'a> Unpin for LibraryEntry<'a>
impl<'a> UnsafeUnpin for LibraryEntry<'a>
impl<'a> UnwindSafe for LibraryEntry<'a>
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