Small crate containing a couple of traits providing id method. Useful when you need to limit some other trait to types that have id field.
[dependencies]
with-id = {version = "1", features=["derive"]}
``` use with_id::WithRefId;
struct Record{ id: String, some_other: String }
trait TakesRecord
struct Client{ url:String }
impl TakesRecord
```