[][src]Struct tfrecord::protos::AllocatorMemoryUsed

pub struct AllocatorMemoryUsed {
    pub allocator_name: String,
    pub total_bytes: i64,
    pub peak_bytes: i64,
    pub live_bytes: i64,
    pub allocation_records: Vec<AllocationRecord>,
    pub allocator_bytes_in_use: i64,
}

Fields

allocator_name: Stringtotal_bytes: i64

These are per-node allocator memory stats.

peak_bytes: i64live_bytes: i64

The bytes that are not deallocated.

allocation_records: Vec<AllocationRecord>

The allocation and deallocation timeline.

allocator_bytes_in_use: i64

These are snapshots of the overall allocator memory stats. The number of live bytes currently allocated by the allocator.

Trait Implementations

impl Clone for AllocatorMemoryUsed[src]

impl Debug for AllocatorMemoryUsed[src]

impl Default for AllocatorMemoryUsed[src]

impl<'de> Deserialize<'de> for AllocatorMemoryUsed[src]

impl Message for AllocatorMemoryUsed[src]

impl PartialEq<AllocatorMemoryUsed> for AllocatorMemoryUsed[src]

impl Serialize for AllocatorMemoryUsed[src]

impl StructuralPartialEq for AllocatorMemoryUsed[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> SetParameter for T

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.