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