protospec_build/asg/
input.rs

1use super::*;
2
3#[derive(PartialEq, Debug)]
4pub struct Input {
5    pub name: String,
6    pub type_: Type,
7}
8
9impl AsgExpression for Input {
10    fn get_type(&self) -> Option<Type> {
11        Some(self.type_.clone())
12    }
13}