pub trait RenderSubGraph:
Send
+ Sync
+ Debug
+ DynEq
+ DynHash {
// Required method
fn dyn_clone(&self) -> Box<dyn RenderSubGraph>;
// Provided method
fn intern(&self) -> Interned<dyn RenderSubGraph>
where Self: Sized { ... }
}
Expand description
A strongly-typed class of labels used to identify a [SubGraph
] in a render graph.
Required Methods§
Sourcefn dyn_clone(&self) -> Box<dyn RenderSubGraph>
fn dyn_clone(&self) -> Box<dyn RenderSubGraph>
Clones this RenderSubGraph
.