airlang 0.27.0

Air is a universal, reliable, and lean programming language.
Documentation
1
2
3
4
5
6
7
use derive_more::Constructor;

#[derive(Copy, Clone, Default, PartialEq, Eq, Hash, Constructor)]
pub struct Call<Func, Input> {
    pub func: Func,
    pub input: Input,
}