pub trait ParameterDataExt {
    // Required methods
    fn get_type(&self) -> &Type;
    fn is_type_defined(&self) -> bool;
}
Expand description

Extension methods for ParameterData

Required Methods§

source

fn get_type(&self) -> &Type

Returns the type of the schema for this parameter, see schema documentation

source

fn is_type_defined(&self) -> bool

Returns true if the schema has a type defined. See schema for documentation.

Implementations on Foreign Types§

source§

impl ParameterDataExt for ParameterData

Implementors§