mirror of
https://github.com/lune-org/lune.git
synced 2025-04-10 21:40:54 +01:00
13 lines
202 B
Rust
13 lines
202 B
Rust
use super::super::bit_mask::*;
|
|
|
|
pub enum FfiBoxFlag {
|
|
Leaked,
|
|
}
|
|
|
|
impl FfiBoxFlag {
|
|
pub const fn value(&self) -> u8 {
|
|
match self {
|
|
Self::Leaked => U8_MASK2,
|
|
}
|
|
}
|
|
}
|