Struct tfrecord::EventInit[][src]

pub struct EventInit {
    pub wall_time: Option<f64>,
    pub step: i64,
}

A Event initializer.

Fields

wall_time: Option<f64>

The wall clock time in microseconds.

If the field is set to None, it sets to current system time when the event is built.

step: i64

The global step.

Implementations

impl EventInit[src]

pub fn new(step: i64, wall_time: f64) -> Self[src]

Create a initializer with global step and wall time.

pub fn with_step(step: i64) -> Self[src]

Create a initializer with global step and without wall time.

pub fn build_empty(self) -> Event[src]

Build an empty event.

pub fn build_with_summary(self, summary: Summary) -> Event[src]

Build an event with summary.

Trait Implementations

impl Clone for EventInit[src]

impl Debug for EventInit[src]

impl From<(i64, SystemTime)> for EventInit[src]

impl From<(i64, f64)> for EventInit[src]

impl From<i64> for EventInit[src]

impl PartialEq<EventInit> for EventInit[src]

impl StructuralPartialEq for EventInit[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> Pointable for T

type Init = T

The type for initializers.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,