Files
shadow-rs/shared/src/structs/registry.rs
2024-07-26 19:45:52 -03:00

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
}