Struct tensorflow::ops::LookupTableInsert
source · pub struct LookupTableInsert { /* private fields */ }
Expand description
Builder for the LookupTableInsert
operation.
Implementations§
source§impl LookupTableInsert
impl LookupTableInsert
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 LookupTableInsert
operation.
sourcepub fn build_instance(
&self,
table_handle: Output,
keys: Output,
values: Output,
scope: &mut Scope
) -> Result<LookupTableInsertInst>
pub fn build_instance( &self, table_handle: Output, keys: Output, values: Output, scope: &mut Scope ) -> Result<LookupTableInsertInst>
Builds a new instance of ‘LookupTableInsert’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Debug for LookupTableInsert
impl Debug for LookupTableInsert
source§impl Default for LookupTableInsert
impl Default for LookupTableInsert
source§fn default() -> LookupTableInsert
fn default() -> LookupTableInsert
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for LookupTableInsert
impl Send for LookupTableInsert
impl Sync for LookupTableInsert
impl Unpin for LookupTableInsert
impl UnwindSafe for LookupTableInsert
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