Skip to content

Commit 303b438

Browse files
authored
Fix clippy lint about lifetime elision (#2890)
1 parent dfb715b commit 303b438

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/core/azure_core/src/http/poller.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ impl<'de> Deserialize<'de> for PollerStatus {
122122
D: serde::Deserializer<'de>,
123123
{
124124
struct PollerStatusVisitor;
125-
impl<'de> serde::de::Visitor<'de> for PollerStatusVisitor {
125+
impl serde::de::Visitor<'_> for PollerStatusVisitor {
126126
type Value = PollerStatus;
127127

128128
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {

0 commit comments

Comments
 (0)