Try and fail to make nodes object-safe in node graph

This commit is contained in:
Dennis
2022-08-01 23:44:10 -07:00
committed by Keavon Chambers
parent fef173d3fe
commit 7384514b87
12 changed files with 200 additions and 64 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
use graphene_core::Node;
use graphene_core::{ExecPtr, Node};
use once_cell::sync::OnceCell;
use std::borrow::Borrow;
use std::{any::Any, borrow::Borrow, ops::Deref};
/// Caches the output of a given Node and acts as a proxy
pub struct CacheNode<'n, 'c, CachedNode: Node + 'c> {