pub trait ParameterDataExt {
// Required methods
fn get_type(&self) -> &Type;
fn is_type_defined(&self) -> bool;
}
Expand description
Extension methods for ParameterData
Required Methods§
Sourcefn get_type(&self) -> &Type
fn get_type(&self) -> &Type
Returns the type of the schema for this parameter, see schema documentation
Sourcefn is_type_defined(&self) -> bool
fn is_type_defined(&self) -> bool
Returns true if the schema has a type defined. See schema for documentation.