Struct lief::elf::note::AndroidIdent
pub struct AndroidIdent<'a> { /* private fields */ }Expand description
Note representing the .note.android.ident section
Implementations§
§impl AndroidIdent<'_>
impl AndroidIdent<'_>
pub fn sdk_version(&self) -> u32
pub fn sdk_version(&self) -> u32
Target SDK version (or 0 if it can’t be resolved)
pub fn ndk_version(&self) -> String
pub fn ndk_version(&self) -> String
NDK version used (or an empty string if it can’t be parsed)
pub fn ndk_build_number(&self) -> String
pub fn ndk_build_number(&self) -> String
NDK build number (or an empty string if it can’t be parsed)
Trait Implementations§
§impl Debug for AndroidIdent<'_>
impl Debug for AndroidIdent<'_>
§impl NoteBase for AndroidIdent<'_>
impl NoteBase for AndroidIdent<'_>
§fn get_type(&self) -> Type
fn get_type(&self) -> Type
Return the type of the note. This type does not match the
NT_ type
value. For accessing the original NT_ value, check NoteBase::original_type§fn original_type(&self) -> u32
fn original_type(&self) -> u32
The original
NT_xxx integer value. The meaning of this value likely
depends on the owner of the note.§fn description(&self) -> &[u8] ⓘ
fn description(&self) -> &[u8] ⓘ
Return the description associated with the note
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for AndroidIdent<'a>
impl<'a> !Send for AndroidIdent<'a>
impl<'a> !Sync for AndroidIdent<'a>
impl<'a> Unpin for AndroidIdent<'a>
impl<'a> !UnwindSafe for AndroidIdent<'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