Struct tensorflow::ops::ConcatInst
source · pub struct ConcatInst {
pub op: Operation,
}
Expand description
An instance of ‘Concat’ Operation with it’s Outputs and Inputs exposed as methods.
Fields§
§op: Operation
An instance of a fully built Concat Operation in a Tensorflow graph.
Implementations§
source§impl ConcatInst
impl ConcatInst
sourcepub fn concat_dim(&self) -> Input<'_>
pub fn concat_dim(&self) -> Input<'_>
Returns the ‘concat_dim’ Input of this ‘Concat’ operation.
Trait Implementations§
source§impl Clone for ConcatInst
impl Clone for ConcatInst
source§fn clone(&self) -> ConcatInst
fn clone(&self) -> ConcatInst
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 ConcatInst
impl Debug for ConcatInst
source§impl From<ConcatInst> for Operation
impl From<ConcatInst> for Operation
source§fn from(inst: ConcatInst) -> Operation
fn from(inst: ConcatInst) -> Operation
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for ConcatInst
impl Send for ConcatInst
impl Sync for ConcatInst
impl Unpin for ConcatInst
impl UnwindSafe for ConcatInst
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