pub trait Bind<Graph, Node> {
// Required method
fn bind(self, graph: Graph) -> Node;
}Expand description
A trait for resources which may be bound to a RenderGraph.
See RenderGraph::bind_node and
PassRef::bind_pipeline for details.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".