A crate for deriving the Deref
and DerefMut
traits from the standard
library onto structs with at least one field.
```rust use derived_deref::{Deref, DerefMut};
struct StringWithCount {
// Annotation of #[target]
is required when there are two+ fields.
#[target] inner: String,
count: usize,
}
// When there is only one field, annotation is optional instead.
struct StringWrapper(String);
struct CountWrapper(#[target] usize); ```