[][src]Struct jvm_hprof::heap_dump::PrimitiveArray

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

Methods for accessing the contents of the array always return Some for method matching the array type and None otherwise (e.g. if it's a PrimitiveArrayType::Float, floats() will always be Some.

Methods

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

pub fn obj_id(&self) -> Id[src]

pub fn stack_trace_serial(&self) -> Serial[src]

pub fn primitive_type(&self) -> PrimitiveArrayType[src]

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

pub fn booleans(&self) -> Option<Booleans>[src]

pub fn chars(&self) -> Option<Chars>[src]

pub fn floats(&self) -> Option<Floats>[src]

pub fn doubles(&self) -> Option<Doubles>[src]

pub fn bytes(&self) -> Option<Bytes>[src]

pub fn shorts(&self) -> Option<Shorts>[src]

pub fn ints(&self) -> Option<Ints>[src]

pub fn longs(&self) -> Option<Longs>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for PrimitiveArray<'a>

impl<'a> Send for PrimitiveArray<'a>

impl<'a> Sync for PrimitiveArray<'a>

impl<'a> Unpin for PrimitiveArray<'a>

impl<'a> UnwindSafe for PrimitiveArray<'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, 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.