Enum rtlola_parser::ast::TypeKind
source · Expand description
Ast representation of the value type of a stream
Variants§
Simple(String)
A simple type, e.g., Int
Tuple(Vec<Type>)
A tuple type, e.g., (Int32, Float32)
Optional(Box<Type>)
An optional type, e.g., Int?
Trait Implementations§
source§impl<'de> Deserialize<'de> for TypeKind
impl<'de> Deserialize<'de> for TypeKind
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