teo_runtime/model/field/
is_optional.rs

1pub trait IsOptional {
2
3    fn is_optional(&self) -> bool;
4
5    fn is_required(&self) -> bool;
6}