[][src]Struct tfrecord::protos::AllocationRecord

pub struct AllocationRecord {
    pub alloc_micros: i64,
    pub alloc_bytes: i64,
}

An allocation/de-allocation operation performed by the allocator.

Fields

alloc_micros: i64

The timestamp of the operation.

alloc_bytes: i64

Number of bytes allocated, or de-allocated if negative.

Trait Implementations

impl Clone for AllocationRecord[src]

impl Debug for AllocationRecord[src]

impl Default for AllocationRecord[src]

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

impl Message for AllocationRecord[src]

impl PartialEq<AllocationRecord> for AllocationRecord[src]

impl Serialize for AllocationRecord[src]

impl StructuralPartialEq for AllocationRecord[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.