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
Should be able to de/serialize Poisson objects via Serde, however it's not as simple as optionally deriving the relevant traits: Serde currently does not support deriving Serialize/Deserialize on const generic arrays (ref serde-rs/serde#1272serde-rs/serde#1937).
May be able to do this via an intermediate struct and the try_from/into attributes, though this will take some experimentation first.
The text was updated successfully, but these errors were encountered:
Should be able to de/serialize
Poisson
objects via Serde, however it's not as simple as optionally deriving the relevant traits: Serde currently does not support derivingSerialize
/Deserialize
on const generic arrays (refserde-rs/serde#1272serde-rs/serde#1937).May be able to do this via an intermediate struct and the
try_from
/into
attributes, though this will take some experimentation first.The text was updated successfully, but these errors were encountered: