Skip to main content

Node

Trait 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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§