[][src]Struct proguard::Class

pub struct Class<'a> { /* fields omitted */ }

Represents class mapping information.

Methods

impl<'a> Class<'a>[src]

pub fn class_name(&self) -> &str[src]

Returns the name of the class.

pub fn alias(&self) -> &str[src]

Returns the obfuscated alias of a class.

pub fn get_field(&'a self, alias: &str) -> Option<MemberInfo<'a>>[src]

Looks up a field by an alias.

pub fn get_methods(
    &'a self,
    alias: &str,
    lineno: Option<u32>
) -> Vec<MemberInfo<'a>>
[src]

Looks up all matching methods for a given alias.

If the line number is supplied as well the return value will most likely only return a single item if found.

pub fn members(&self) -> MemberIter[src]

Iterates over all members of the class.

Trait Implementations

impl<'a> Clone for Class<'a>[src]

impl<'a> Display for Class<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Class<'a>

impl<'a> Send for Class<'a>

impl<'a> Sync for Class<'a>

impl<'a> Unpin for Class<'a>

impl<'a> UnwindSafe for Class<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.