pub struct ProguardMapping<'s> { /* private fields */ }Expand description
A Proguard Mapping file.
Implementations§
Source§impl<'s> ProguardMapping<'s>
impl<'s> ProguardMapping<'s>
Sourcepub fn is_valid(&self) -> bool
pub fn is_valid(&self) -> bool
Whether the mapping file is indeed valid.
§Examples
use proguard::ProguardMapping;
let valid = ProguardMapping::new(b"a -> b:\n void method() -> b");
assert_eq!(valid.is_valid(), true);
let invalid = ProguardMapping::new(
br#"
a -> proguard:
mapping but(is) -> not
"#,
);
assert_eq!(invalid.is_valid(), false);Sourcepub fn summary(&self) -> MappingSummary<'_>
pub fn summary(&self) -> MappingSummary<'_>
Returns a summary of the file.
Sourcepub fn has_line_info(&self) -> bool
pub fn has_line_info(&self) -> bool
Whether the mapping file contains line info.
§Examples
use proguard::ProguardMapping;
let with = ProguardMapping::new(b"a -> b:\n 1:1:void method() -> a");
assert_eq!(with.has_line_info(), true);
let without = ProguardMapping::new(b"a -> b:\n void method() -> b");
assert_eq!(without.has_line_info(), false);Sourcepub fn iter(&self) -> ProguardRecordIter<'s> ⓘ
pub fn iter(&self) -> ProguardRecordIter<'s> ⓘ
Create an Iterator over ProguardRecords.
Trait Implementations§
Source§impl<'s> Clone for ProguardMapping<'s>
impl<'s> Clone for ProguardMapping<'s>
Source§fn clone(&self) -> ProguardMapping<'s>
fn clone(&self) -> ProguardMapping<'s>
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProguardMapping<'_>
impl Debug for ProguardMapping<'_>
Source§impl<'s> Default for ProguardMapping<'s>
impl<'s> Default for ProguardMapping<'s>
Source§fn default() -> ProguardMapping<'s>
fn default() -> ProguardMapping<'s>
Returns the “default value” for a type. Read more
impl<'s> Copy for ProguardMapping<'s>
Auto Trait Implementations§
impl<'s> Freeze for ProguardMapping<'s>
impl<'s> RefUnwindSafe for ProguardMapping<'s>
impl<'s> Send for ProguardMapping<'s>
impl<'s> Sync for ProguardMapping<'s>
impl<'s> Unpin for ProguardMapping<'s>
impl<'s> UnwindSafe for ProguardMapping<'s>
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)