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