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
Internally, Serde operations that require buffering a value use two different types for ser and de. Among the differences are ser distinguishes between seq and tuple while de does not, de has a lifetime parameter to hold &'de str while ser does not.
This may make sense to mirror here depending on the intended use cases of serde-value.
The text was updated successfully, but these errors were encountered:
Internally, Serde operations that require buffering a value use two different types for
ser
andde
. Among the differences areser
distinguishes between seq and tuple whilede
does not,de
has a lifetime parameter to hold&'de str
whileser
does not.This may make sense to mirror here depending on the intended use cases of serde-value.
The text was updated successfully, but these errors were encountered: