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