#[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, }
Expand description

Required features: "Win32_AI_MachineLearning_DirectML"

Fields

InputCount: u32OutputCount: u32NodeCount: u32Nodes: *const DML_GRAPH_NODE_DESCInputEdgeCount: u32InputEdges: *const DML_GRAPH_EDGE_DESCOutputEdgeCount: u32OutputEdges: *const DML_GRAPH_EDGE_DESCIntermediateEdgeCount: u32IntermediateEdges: *const DML_GRAPH_EDGE_DESC

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.