tafia / quick-protobuf

A rust implementation of protobuf parser
MIT License
446 stars 82 forks source link

deserialize_from_vec may be more helperful #253

Open miaomiao1992 opened 8 months ago

miaomiao1992 commented 8 months ago

deserialize_from_slice requires vec or &[u8] live longer than object decoded.

deserialize_from_vec may be helperful, and then we can transfer object decoded from one function to another function.

thanks!