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
There is a proposal in serde-rs/serde#492, that allows to deserialize into &str and &[u8]. That fits ideally for ValueRef, which also borrows its data from the buffer from which it was created. The only allocations will do after that - for stack management (can be eliminated partially using SVO).
The text was updated successfully, but these errors were encountered:
There is a proposal in serde-rs/serde#492, that allows to deserialize into
&str
and&[u8]
. That fits ideally forValueRef
, which also borrows its data from the buffer from which it was created. The only allocations will do after that - for stack management (can be eliminated partially using SVO).The text was updated successfully, but these errors were encountered: