Trait screen_13::graph::Unbind

source ·
pub trait Unbind<Graph, Binding> {
    // Required method
    fn unbind(self, graph: &mut Graph) -> Binding;
}
Expand description

A trait for resources which may be unbound from a RenderGraph.

See RenderGraph::unbind_node for details.

Required Methods§

source

fn unbind(self, graph: &mut Graph) -> Binding

Unbinds the resource from a graph-like object.

Returns the original Binding object.

Implementors§