magiclen / rocket-multipart-form-data

This crate provides a multipart parser for the Rocket framework.
MIT License
35 stars 14 forks source link

Refactored some parts of the code... #5

Closed emmanuelantony2000 closed 5 years ago

emmanuelantony2000 commented 5 years ago

Changed the loop and if let to while let. Changed if let Ok(x) = something to if something.isok() Changed if let Err() = something to if something.is_err() Then other small changes....