[][src]Struct jvm_hprof::Hprof

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

The top level of data loaded from an .hprof file.

Implementations

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

pub fn header(&self) -> Header<'a>[src]

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

pub fn records_iter(&self) -> Records<'a>

Notable traits for Records<'a>

impl<'a> Iterator for Records<'a> type Item = Result<Record<'a>, Err<(&'a [u8], ErrorKind)>>;
[src]

Iterate over the Record data in the hprof.

Iteration is cheap, as each Record defers parsing the bulk of its data until later.

Auto Trait Implementations

impl<'a> RefUnwindSafe for Hprof<'a>[src]

impl<'a> Send for Hprof<'a>[src]

impl<'a> Sync for Hprof<'a>[src]

impl<'a> Unpin for Hprof<'a>[src]

impl<'a> UnwindSafe for Hprof<'a>[src]

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