Struct windows_sys::Win32::AI::MachineLearning::DirectML::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,
}
Expand description
Required features: "Win32_AI_MachineLearning_DirectML"
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
impl Copy for DML_GRAPH_DESC
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more