INNER CODE UNIT · Rust
info
attackgoat/vk-graph · crates/vk-graph-hot/src/lib.rs:279
pub fn info(&self) -> [<$pipeline Info>] {
self.cache().pipeline.info()
}
/// Sets the debugging name assigned to this pipeline.
///
/// _Note:_ The pipeline name may only be assigned once.
/// Subsequent calls will not update the previously set name value.
pub fn set_debug_name(&self, name: impl AsRef<str>) {
self.cache().pipeline.set_debug_name(name);
}
/// Sets the debugging name assigned to this pipeline.
///
/// _Note:_ The pipeline name may only be assigned once.
/// Subsequent calls will not update the previously set name value.
pub fn with_debug_name(self, name: impl AsRef<str>) -> Self {
self.set_debug_name(name);