[][src]Struct onnxruntime::environment::Environment

pub struct Environment { /* fields omitted */ }

An Environment is the main entry point of the ONNX Runtime.

Only one ONNX environment can be created per process. The onnxruntime crate uses a singleton (through lazy_static!()) to enforce this.

Once an environment is created, a Session can be obtained from it.

NOTE: While the Environment constructor takes a name parameter to name the environment, only the first name will be considered if many environments are created.

Example

let environment = Environment::builder()
    .with_name("test")
    .with_log_level(LoggingLevel::Verbose)
    .build()?;

Implementations

impl Environment[src]

pub fn builder() -> EnvBuilder[src]

Create a new environment builder using default values (name: default, log level: LoggingLevel::Warning)

pub fn name(&self) -> String[src]

Return the name of the current environment

pub fn new_session_builder(&self) -> Result<SessionBuilder>[src]

Create a new SessionBuilder used to create a new ONNX session.

Trait Implementations

impl Clone for Environment[src]

impl Debug for Environment[src]

impl Drop for Environment[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> Instrument 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.