pub trait TypeDefinitionExtension {
    fn is_leaf_type(&self) -> bool;
fn is_composite_type(&self) -> bool;
fn is_input_type(&self) -> bool;
fn is_abstract_type(&self) -> bool;
fn name(&self) -> String; }

Required methods

Implementors