pub trait TypeExtension {
    fn inner_type(&self) -> String;
    fn is_non_null(&self) -> bool;
    fn is_list_type(&self) -> bool;
    fn is_named_type(&self) -> bool;
    fn of_type(&self) -> &Type;
}

Required Methods

Implementors