mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
Make key and struct_field optional in DeserializerItem
The main point of this struct seems to be debugging, as key_struct_field is unused except for debugging.
This commit is contained in:
parent
6e0cb6b809
commit
5491b54859
@ -4,8 +4,7 @@ use serde::{de, forward_to_deserialize_any};
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct DeserializerItem<'de> {
|
||||
key: String,
|
||||
struct_field: &'de str,
|
||||
key_struct_field: Option<(String, &'de str)>,
|
||||
val: Tagged<Value>,
|
||||
}
|
||||
|
||||
@ -44,8 +43,7 @@ impl<'de> ConfigDeserializer<'de> {
|
||||
trace!("pushing {:?}", value);
|
||||
|
||||
self.stack.push(DeserializerItem {
|
||||
key: name.to_string(),
|
||||
struct_field: name,
|
||||
key_struct_field: Some((name.to_string(), name)),
|
||||
val: value.unwrap_or_else(|| {
|
||||
Value::nothing().tagged(Tag::unknown_origin(self.call.name_span))
|
||||
}),
|
||||
|
Loading…
Reference in New Issue
Block a user