Implement image loding test

This commit is contained in:
Dennis 2022-08-13 19:15:48 +02:00 committed by Keavon Chambers
parent 8a0eb0e266
commit 12b33da083
9 changed files with 665 additions and 30 deletions

View file

@ -1,22 +1,23 @@
pub mod value;
#![feature(type_alias_impl_trait)]
//pub mod value;
pub use graphene_core::{generic, ops /*, structural*/};
//#[cfg(feature = "memoization")]
//pub mod memo;
#[cfg(feature = "memoization")]
pub mod memo;
//pub mod raster;
pub mod raster;
pub use graphene_core::*;
use dyn_any::DynAny;
/*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);
pub trait DynamicInput<'n> {
fn set_kwarg_by_name(&mut self, name: &str, value: DynAnyNode<'n>);
fn set_arg_by_index(&mut self, index: usize, value: DynAnyNode<'n>);
}
*/
use quote::quote;
use syn::{Expr, ExprPath, Type};