[][src]Struct proguard::ParseError

pub struct ParseError<'s> { /* fields omitted */ }

Error when parsing a proguard mapping line.

Since the mapping parses proguard line-by-line, an error will also contain the offending line.

Implementations

impl<'s> ParseError<'s>[src]

pub fn line(&self) -> &[u8][src]

The offending line that caused the error.

pub fn kind(&self) -> ParseErrorKind[src]

The specific parse Error.

Trait Implementations

impl<'s> Clone for ParseError<'s>[src]

impl<'s> Copy for ParseError<'s>[src]

impl<'s> Debug for ParseError<'s>[src]

impl<'_> Display for ParseError<'_>[src]

impl<'_> Error for ParseError<'_>[src]

impl<'s> PartialEq<ParseError<'s>> for ParseError<'s>[src]

impl<'s> StructuralPartialEq for ParseError<'s>[src]

Auto Trait Implementations

impl<'s> RefUnwindSafe for ParseError<'s>

impl<'s> Send for ParseError<'s>

impl<'s> Sync for ParseError<'s>

impl<'s> Unpin for ParseError<'s>

impl<'s> UnwindSafe for ParseError<'s>

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.