Skip to content

Commit

Permalink
Fix Scope deserialization lifetime
Browse files Browse the repository at this point in the history
  • Loading branch information
schungx committed Sep 27, 2024
1 parent b65cd82 commit 5107a6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serde/deserialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ impl<'de> Deserialize<'de> for ImmutableString {
}
}

impl<'de> Deserialize<'de> for Scope<'de> {
impl<'de> Deserialize<'de> for Scope<'_> {
#[inline(always)]
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
#[derive(Debug, Clone, Hash, Deserialize)]
Expand Down

0 comments on commit 5107a6a

Please sign in to comment.