Trait screen_13::graph::node::Node

source ·
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§

source

fn index(self) -> usize

The internal node index of this bound resource.

Object Safety§

This trait is not object safe.

Implementors§