Remove invalid impl

This commit is contained in:
Daniel Beckwith 2022-11-24 22:19:06 +00:00 committed by Austin Bonander
parent 0b192cfda6
commit cea7228fe0

View File

@ -63,12 +63,6 @@ impl<T> From<T> for Json<T> {
}
}
impl<T> From<Json<T>> for T {
fn from(Json(value): Json<T>) -> Self {
value
}
}
impl<T> Deref for Json<T> {
type Target = T;