mirror of
https://github.com/joaoviictorti/shadow-rs.git
synced 2026-01-17 22:45:07 +01:00
10 lines
212 B
Rust
10 lines
212 B
Rust
extern crate alloc;
|
|
|
|
// Stores the target registry
|
|
#[repr(C)]
|
|
#[derive(Debug, Default)]
|
|
pub struct TargetRegistry {
|
|
pub key: alloc::string::String,
|
|
pub value: alloc::string::String,
|
|
pub enable: bool
|
|
} |