pub trait Node: Copy {
    fn index(self) -> usize;
}
Expand description

A Vulkan resource which has been bound to a RenderGraph using RenderGraph::bind_node.

Required Methods

The internal node index of this bound resource.

Implementors