1use super::*; 2 3pub struct FFIArgument { 4 pub name: String, 5 pub type_: Option<Type>, 6 pub optional: bool, 7} 8 9pub struct FFIArgumentValue { 10 pub type_: Type, 11 pub present: bool, 12 pub value: TokenStream, 13}