Struct tensorflow::OutputName
source · pub struct OutputName {
pub name: String,
pub index: c_int,
}
Expand description
Names a specific Output in the graph.
Fields§
§name: String
Name of the operation the edge connects to.
index: c_int
Index into either the outputs of the operation.
Trait Implementations§
source§impl Clone for OutputName
impl Clone for OutputName
source§fn clone(&self) -> OutputName
fn clone(&self) -> OutputName
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 OutputName
impl Debug for OutputName
source§impl Default for OutputName
impl Default for OutputName
source§fn default() -> OutputName
fn default() -> OutputName
Returns the “default value” for a type. Read more
source§impl Display for OutputName
impl Display for OutputName
source§impl FromStr for OutputName
impl FromStr for OutputName
source§impl Hash for OutputName
impl Hash for OutputName
source§impl PartialEq<OutputName> for OutputName
impl PartialEq<OutputName> for OutputName
source§fn eq(&self, other: &OutputName) -> bool
fn eq(&self, other: &OutputName) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for OutputName
impl StructuralEq for OutputName
impl StructuralPartialEq for OutputName
Auto Trait Implementations§
impl RefUnwindSafe for OutputName
impl Send for OutputName
impl Sync for OutputName
impl Unpin for OutputName
impl UnwindSafe for OutputName
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