hypershell_components/dsl/
arg.rs

1use core::marker::PhantomData;
2
3pub struct StaticArg<Arg>(pub PhantomData<Arg>);
4
5pub struct FieldArg<Tag>(pub PhantomData<Tag>);