We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a7c696 commit 24125e2Copy full SHA for 24125e2
lambda-http/src/deserializer.rs
@@ -20,7 +20,7 @@ impl<'de> Deserialize<'de> for LambdaRequest {
20
where
21
D: serde::Deserializer<'de>,
22
{
23
- let raw_value: Box<RawValue> = Box::deserialize(deserializer)?;
+ let raw_value: Box<RawValue> = Box::<RawValue>::deserialize(deserializer)?;
24
let data = raw_value.get();
25
26
#[cfg(feature = "apigw_rest")]
0 commit comments