mirror of
https://github.com/guilhermewerner/reflection
synced 2025-06-15 13:14:19 +00:00
5 lines
124 B
Rust
5 lines
124 B
Rust
pub trait Function<Args = ()>: Send + Sync + 'static {
|
|
type Result;
|
|
fn Invoke(&self, args: Args) -> Self::Result;
|
|
}
|