blob: cc2ab5bfbc116d0d7179607fffc6a093707f3a72 (
plain) (
tree)
|
|
use nix_compat_derive::nix_deserialize_remote;
pub struct Value(String);
impl From<String> for Value {
fn from(s: String) -> Value {
Value(s)
}
}
nix_deserialize_remote!(
#[nix()]
Value
);
fn main() {}
|