You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and am trying to implement a deserialization trait on it. When I try to call deserialize on a Vec<u8> to produce a List<u8> say, rustc overflows, presumably chasing <T> through an infinite chain of Option<Box<List<T>>>s somehow.
Note that if the data field and parameter <T> are removed, there is no stack overflow.