Struct tensorflow::Output
source · pub struct Output {
pub operation: Operation,
pub index: c_int,
}Expand description
A Output is one end of a graph edge.
It holds an operation and an index into the outputs of that operation.
Fields§
§operation: OperationOperation the edge connects to.
index: c_intIndex into either the outputs of the operation.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Output
impl Send for Output
impl Sync for Output
impl Unpin for Output
impl UnwindSafe for Output
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