Struct tensorflow::ops::LookupTableImport
source · pub struct LookupTableImport { /* private fields */ }
Expand description
Builder for the LookupTableImport
operation.
Implementations§
source§impl LookupTableImport
impl LookupTableImport
sourcepub fn add_control_input(self, op: Operation) -> Self
pub fn add_control_input(self, op: Operation) -> Self
Adds a control input.
sourcepub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>>(
&self,
table_handle: O0,
keys: O1,
values: O2,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>>( &self, table_handle: O0, keys: O1, values: O2, scope: &mut Scope ) -> Result<Operation>
Builds the LookupTableImport
operation.
sourcepub fn build_instance(
&self,
table_handle: Output,
keys: Output,
values: Output,
scope: &mut Scope
) -> Result<LookupTableImportInst>
pub fn build_instance( &self, table_handle: Output, keys: Output, values: Output, scope: &mut Scope ) -> Result<LookupTableImportInst>
Builds a new instance of ‘LookupTableImport’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Debug for LookupTableImport
impl Debug for LookupTableImport
source§impl Default for LookupTableImport
impl Default for LookupTableImport
source§fn default() -> LookupTableImport
fn default() -> LookupTableImport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for LookupTableImport
impl Send for LookupTableImport
impl Sync for LookupTableImport
impl Unpin for LookupTableImport
impl UnwindSafe for LookupTableImport
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more