mirror of
https://github.com/guilhermewerner/reflection
synced 2025-06-16 21:44:19 +00:00
Test generics and other things
This commit is contained in:
4
Source/Function.rs
Normal file
4
Source/Function.rs
Normal file
@ -0,0 +1,4 @@
|
||||
pub trait Function<Args = ()>: Send + Sync + 'static {
|
||||
type Result;
|
||||
fn Invoke(&self, args: Args) -> Self::Result;
|
||||
}
|
Reference in New Issue
Block a user