Struct DML_GRAPH_DESC
#[repr(C)]pub struct DML_GRAPH_DESC {
pub InputCount: u32,
pub OutputCount: u32,
pub NodeCount: u32,
pub Nodes: *const DML_GRAPH_NODE_DESC,
pub InputEdgeCount: u32,
pub InputEdges: *const DML_GRAPH_EDGE_DESC,
pub OutputEdgeCount: u32,
pub OutputEdges: *const DML_GRAPH_EDGE_DESC,
pub IntermediateEdgeCount: u32,
pub IntermediateEdges: *const DML_GRAPH_EDGE_DESC,
}
Fields§
§InputCount: u32
§OutputCount: u32
§NodeCount: u32
§Nodes: *const DML_GRAPH_NODE_DESC
§InputEdgeCount: u32
§InputEdges: *const DML_GRAPH_EDGE_DESC
§OutputEdgeCount: u32
§OutputEdges: *const DML_GRAPH_EDGE_DESC
§IntermediateEdgeCount: u32
§IntermediateEdges: *const DML_GRAPH_EDGE_DESC
Trait Implementations§
§impl Clone for DML_GRAPH_DESC
impl Clone for DML_GRAPH_DESC
§fn clone(&self) -> DML_GRAPH_DESC
fn clone(&self) -> DML_GRAPH_DESC
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 more§impl Debug for DML_GRAPH_DESC
impl Debug for DML_GRAPH_DESC
§impl Default for DML_GRAPH_DESC
impl Default for DML_GRAPH_DESC
§impl PartialEq for DML_GRAPH_DESC
impl PartialEq for DML_GRAPH_DESC
impl Copy for DML_GRAPH_DESC
impl StructuralPartialEq for DML_GRAPH_DESC
Auto Trait Implementations§
impl Freeze for DML_GRAPH_DESC
impl RefUnwindSafe for DML_GRAPH_DESC
impl !Send for DML_GRAPH_DESC
impl !Sync for DML_GRAPH_DESC
impl Unpin for DML_GRAPH_DESC
impl UnwindSafe for DML_GRAPH_DESC
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