pub trait Node: Copy {
// Required method
fn index(self) -> usize;
}Expand description
A Vulkan resource which has been bound to a RenderGraph using RenderGraph::bind_node.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.