ced05a2bb6
This adds a nix-compat-derive derive crate that implements a deriver for NixDeserialize implementations. This is to reduce the amount of code needed to implement deserialization for all the types used by the Nix daemon protocol. Change-Id: I484724b550e8a1d5e9adad9555d9dc1374ae95c2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12022 Autosubmit: Brian Olsen <me@griff.name> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
16 lines
484 B
Text
16 lines
484 B
Text
error[E0277]: the trait bound `Test: FromStr` is not satisfied
|
|
--> tests/ui/deserialize_from_str_missing.rs:4:7
|
|
|
|
|
4 | #[nix(from_str)]
|
|
| ^^^^^^^^ the trait `FromStr` is not implemented for `Test`
|
|
|
|
|
= help: the following other types implement trait `FromStr`:
|
|
IpAddr
|
|
Ipv4Addr
|
|
Ipv6Addr
|
|
NonZero<i128>
|
|
NonZero<i16>
|
|
NonZero<i32>
|
|
NonZero<i64>
|
|
NonZero<i8>
|
|
and $N others
|