Skip to content

Commit b87778b

Browse files
committed
don't use experimental (in 1.36) Self:: access for enums
1 parent 1bf61e9 commit b87778b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/value/from.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ where
275275
{
276276
fn from(opt: Option<T>) -> Self {
277277
match opt {
278-
None => Self::Null,
278+
None => Value::Null,
279279
Some(value) => Into::into(value),
280280
}
281281
}

0 commit comments

Comments
 (0)