Struct tensorflow::ops::SparseConcatInst
source · pub struct SparseConcatInst {
pub op: Operation,
}
Expand description
An instance of ‘SparseConcat’ Operation with it’s Outputs and Inputs exposed as methods.
Fields§
§op: Operation
An instance of a fully built SparseConcat Operation in a Tensorflow graph.
Implementations§
source§impl SparseConcatInst
impl SparseConcatInst
sourcepub fn output_indices(&self) -> Output
pub fn output_indices(&self) -> Output
Returns the ‘output_indices’ Output of this ‘SparseConcat’ operation.
sourcepub fn output_values(&self) -> Output
pub fn output_values(&self) -> Output
Returns the ‘output_values’ Output of this ‘SparseConcat’ operation.
sourcepub fn output_shape(&self) -> Output
pub fn output_shape(&self) -> Output
Returns the ‘output_shape’ Output of this ‘SparseConcat’ operation.
sourcepub fn indices(&self) -> Result<Vec<Input<'_>>>
pub fn indices(&self) -> Result<Vec<Input<'_>>>
Returns a Vector of indices for ‘indices’ Input of this SparseConcat operation.
Trait Implementations§
source§impl Clone for SparseConcatInst
impl Clone for SparseConcatInst
source§fn clone(&self) -> SparseConcatInst
fn clone(&self) -> SparseConcatInst
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SparseConcatInst
impl Debug for SparseConcatInst
source§impl From<SparseConcatInst> for Operation
impl From<SparseConcatInst> for Operation
source§fn from(inst: SparseConcatInst) -> Operation
fn from(inst: SparseConcatInst) -> Operation
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for SparseConcatInst
impl Send for SparseConcatInst
impl Sync for SparseConcatInst
impl Unpin for SparseConcatInst
impl UnwindSafe for SparseConcatInst
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