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