[][src]Struct menoh::VariableProfileTableBuilder

pub struct VariableProfileTableBuilder { /* fields omitted */ }

Builder for VariableProfileTable.

Methods

impl VariableProfileTableBuilder
[src]

pub fn new() -> Result<Self, Error>
[src]

Create a builder.

let vpt_builder = VariableProfileTableBuilder::new()?;

pub fn add_input<T>(&mut self, name: &str, dims: &[usize]) -> Result<(), Error> where
    T: Dtype
[src]

Register a variable as input.

vpt_builder.add_input::<f32>("input", &[2, 3])?;

pub fn add_output(&mut self, name: &str) -> Result<(), Error>
[src]

Register a variable as output.

vpt_builder.add_output("fc2")?;

pub fn build(
    self,
    model_data: &ModelData
) -> Result<VariableProfileTable, Error>
[src]

Build a VariableProfileTable using a ModelData.

let vpt = vpt_builder.build(&model_data)?;

Trait Implementations

impl Drop for VariableProfileTableBuilder
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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