Struct proguard::LineMapping[][src]

pub struct LineMapping {
    pub startline: usize,
    pub endline: usize,
    pub original_startline: Option<usize>,
    pub original_endline: Option<usize>,
}

A proguard line mapping.

Maps start/end lines of a minified file to original start/end lines.

All line mappings are 1-based and inclusive.

Fields

startline: usize

Start Line, 1-based.

endline: usize

End Line, inclusive.

original_startline: Option<usize>

The original Start Line.

original_endline: Option<usize>

The original End Line.

Trait Implementations

impl Clone for LineMapping[src]

impl Debug for LineMapping[src]

impl PartialEq<LineMapping> for LineMapping[src]

impl StructuralPartialEq for LineMapping[src]

Auto Trait Implementations

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, 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.