pub struct Key {
pub Type: KeyType,
pub number: Option<JsFloat>,
pub string: Option<String>,
pub date: Option<JsFloat>,
pub array: Option<Vec<Key>>,
}Fields§
§Type: KeyType§number: Option<JsFloat>§string: Option<String>§date: Option<JsFloat>§array: Option<Vec<Key>>Trait Implementations§
source§impl<'de> Deserialize<'de> for Key
impl<'de> Deserialize<'de> for Key
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more