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
Currently fory rust use expect in many places, if the expect doesn't succed, the program will panic. We should return use Result/Error as return value instead if panic directly. And we can shortpath the codeflow by ?
This is necessary, especially when deserialization can come from untrusted source.
Is your feature request related to a problem? Please describe