Struct tfdeploy::analyser::Edge [−][src]
pub struct Edge {
pub id: usize,
pub from: Option<OutletId>,
pub to_node: Option<usize>,
pub to_input: usize,
pub fact: TensorFact,
}An edge of the analysed graph, annotated by a fact.
Fields
id: usize
from: Option<OutletId>
to_node: Option<usize>
to_input: usize
fact: TensorFact
Trait Implementations
impl Debug for Edge[src]
impl Debug for Edgefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Edge[src]
impl Clone for Edgefn clone(&self) -> Edge[src]
fn clone(&self) -> EdgeReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for Edge[src]
impl PartialEq for Edge