rename parse_json to parsed_values

This commit is contained in:
Bunny Bites 2023-11-12 13:09:51 +05:30
parent 13a82a3705
commit a74e6d82c7

View file

@ -40,7 +40,7 @@ where
}
impl FormData {
pub fn parse_json<T>(&self) -> Result<T, serde_json::Error>
pub fn parsed_values<T>(&self) -> Result<T, serde_json::Error>
where
T: serde::de::DeserializeOwned,
{