diff --git a/src/value/from.rs b/src/value/from.rs index bd137b4..858a6e4 100644 --- a/src/value/from.rs +++ b/src/value/from.rs @@ -275,7 +275,7 @@ where { fn from(opt: Option) -> Self { match opt { - None => Self::Null, + None => Value::Null, Some(value) => Into::into(value), } }