[][src]Struct tensorflow_proto::tensorflow::PartialRunSetupRequest

pub struct PartialRunSetupRequest {
    pub session_handle: String,
    pub feed: Vec<String>,
    pub fetch: Vec<String>,
    pub target: Vec<String>,
    pub request_id: i64,
}

Fields

session_handle: String

REQUIRED: session_handle must be returned by a CreateSession call to the same master service.

feed: Vec<String>

Tensors to be fed in future steps.

fetch: Vec<String>

Fetches. A list of tensor names. The caller expects a tensor to be returned for each fetch[i] (see RunStepResponse.tensor), for corresponding partial RunStepRequests. The order of specified fetches does not change the execution order.

target: Vec<String>

Target Nodes. A list of node names. The named nodes will be run in future steps, but their outputs will not be fetched.

request_id: i64

Unique identifier for this request. Every PartialRunSetupRequest must have a unique request_id, and retried PartialRunSetupRequest must have the same request_id. If request_id is zero, retry detection is disabled.

Trait Implementations

impl Clone for PartialRunSetupRequest[src]

impl Debug for PartialRunSetupRequest[src]

impl Default for PartialRunSetupRequest[src]

impl Message for PartialRunSetupRequest[src]

impl PartialEq<PartialRunSetupRequest> for PartialRunSetupRequest[src]

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