Add raster module to graphene_core

This commit is contained in:
Dennis
2022-08-04 12:34:05 +02:00
committed by Keavon Chambers
parent c235c7f252
commit 83ff548596
10 changed files with 220 additions and 48 deletions

View File

@@ -6,7 +6,7 @@ pub mod memo;
pub use graphene_core::*;
use dyn_any::{downcast_ref, DynAny, StaticType};
use dyn_any::DynAny;
pub type DynNode<'n, T> = &'n (dyn Node<'n, Output = T> + 'n);
pub type DynAnyNode<'n> = &'n (dyn Node<'n, Output = &'n dyn DynAny<'n>> + 'n);