[][src]Struct tensorflow_proto::tensorflow::LoggingRequest

pub struct LoggingRequest {
    pub enable_rpc_logging: bool,
    pub disable_rpc_logging: bool,
    pub clear: bool,
    pub fetch_step_id: Vec<i64>,
}

Out-of-band request to begin or end logging, or to retrieve logs for particular steps.

Fields

enable_rpc_logging: bool

If true, RPC logging will be enabled.

disable_rpc_logging: bool

If true, RPC logging will be disabled.

clear: bool

If true, discard any saved logging data (for all steps).

fetch_step_id: Vec<i64>

When set, requests all saved log data pertaining to the step. Any log data retrieved is eliminated from the store and cannot be retrieved again.

Trait Implementations

impl Clone for LoggingRequest[src]

impl Debug for LoggingRequest[src]

impl Default for LoggingRequest[src]

impl Message for LoggingRequest[src]

impl PartialEq<LoggingRequest> for LoggingRequest[src]

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