pub struct OnnxGraph {
pub nodes: Vec<Node>,
pub inputs: Vec<Argument>,
pub outputs: Vec<Argument>,
}
Expand description
ONNX graph representation
Fields§
§nodes: Vec<Node>
The nodes of the graph.
inputs: Vec<Argument>
The inputs of the graph.
outputs: Vec<Argument>
The outputs of the graph.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OnnxGraph
impl RefUnwindSafe for OnnxGraph
impl Send for OnnxGraph
impl Sync for OnnxGraph
impl Unpin for OnnxGraph
impl UnwindSafe for OnnxGraph
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