hypershell_components/dsl/
args.rs

1use core::marker::PhantomData;
2
3use crate::traits::WrapStaticArg;
4
5pub struct WithArgs<Args>(pub PhantomData<Args>);
6
7pub struct FieldArgs<Tag>(pub PhantomData<Tag>);
8
9pub struct JoinArgs<Args>(pub PhantomData<Args>);
10
11pub type WithStaticArgs<Args> = WithArgs<<Args as WrapStaticArg>::Wrapped>;