[][src]Struct tensorflow::SessionOptions

pub struct SessionOptions { /* fields omitted */ }

Options that can be passed during session creation.

Methods

impl SessionOptions[src]

pub fn set_target(&mut self, target: &str) -> Result<(), NulError>[src]

Set the target.

target can be empty, a single entry, or a comma separated list of entries. Each entry is in one of the following formats :

  • "local"
  • ip:port
  • host:port

pub fn set_config(&mut self, config: &[u8]) -> Result<()>[src]

Set the config.

config should be a serialized ConfigProto proto. Returns an error if config was not parsed successfully as a ConfigProto.

impl SessionOptions[src]

pub fn new() -> Self[src]

Creates a blank set of options.

Trait Implementations

impl Drop for SessionOptions[src]

impl Debug for SessionOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.