pub enum ObjType {
Map,
Table,
List,
Text,
}
Expand description
The type of an object
Variants§
Map
A map
Table
Retained for backwards compatibility, tables are identical to maps
List
A sequence of arbitrary values
Text
A sequence of characters
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for ObjType
impl<'de> Deserialize<'de> for ObjType
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