[][src]Struct tensorflow_proto::tensorflow::EventReply

pub struct EventReply {
    pub debug_op_state_changes: Vec<DebugOpStateChange>,
    pub tensor: Option<TensorProto>,
}

Reply message from EventListener to the client, i.e., to the source of the Event protocol buffers, e.g., debug ops inserted by a debugged runtime to a TensorFlow graph being executed.

Fields

debug_op_state_changes: Vec<DebugOpStateChange>tensor: Option<TensorProto>

New tensor value to override the current tensor value with.

TODO(cais): Make use of this field to implement overriding of tensor value during debugging.

Trait Implementations

impl Clone for EventReply[src]

impl Debug for EventReply[src]

impl Default for EventReply[src]

impl Message for EventReply[src]

impl PartialEq<EventReply> for EventReply[src]

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