mirror of
https://github.com/lune-org/lune.git
synced 2025-04-10 21:40:54 +01:00
15 lines
247 B
Rust
15 lines
247 B
Rust
use super::NativeConvert;
|
|
|
|
pub struct FfiArgRefOption {
|
|
pub flag: u8,
|
|
}
|
|
|
|
pub enum NativeArgType {
|
|
FfiBox,
|
|
FfiRef(FfiArgRefOption),
|
|
}
|
|
|
|
pub struct NativeArgInfo {
|
|
pub conv: *const dyn NativeConvert,
|
|
// pub kind: NativeArgType,
|
|
}
|