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