mirror of
https://github.com/lune-org/lune.git
synced 2025-04-10 21:40:54 +01:00
11 lines
197 B
Rust
11 lines
197 B
Rust
use super::NativeConvert;
|
|
|
|
// pub enum NativeResultType {
|
|
// FfiBox,
|
|
// FfiRef,
|
|
// }
|
|
|
|
pub struct NativeResultInfo {
|
|
pub conv: *const dyn NativeConvert,
|
|
// kind: NativeResultType,
|
|
}
|