mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-06 22:37:39 +03:00
fmt
This commit is contained in:
parent
f0f899a36e
commit
15025b89c1
14 changed files with 34 additions and 82 deletions
|
@ -163,9 +163,7 @@ impl<T: ResourcePath> Path<T> {
|
|||
}
|
||||
|
||||
/// Try to deserialize matching parameters to a specified type `U`
|
||||
pub fn load<'de, U: serde::Deserialize<'de>>(
|
||||
&'de self,
|
||||
) -> Result<U, de::value::Error> {
|
||||
pub fn load<'de, U: serde::Deserialize<'de>>(&'de self) -> Result<U, de::value::Error> {
|
||||
de::Deserialize::deserialize(PathDeserializer::new(self))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue