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.
pub trait Bind<Graph, Node> {
// Required method
fn bind(self, graph: Graph) -> Node;
}A trait for resources which may be bound to a RenderGraph.
See RenderGraph::bind_node and
PassRef::bind_pipeline for details.