Skip to main content

TemplateParameterValue

Trait TemplateParameterValue 

Source
pub trait TemplateParameterValue {
    type Error;

    // Required methods
    fn to_template_parameter_value(self) -> Option<ParameterValue>;
    fn try_from_template_parameter_value(
        value: Option<ParameterValue>,
    ) -> Result<Self, Self::Error>
       where Self: Sized;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Source§

impl<T> TemplateParameterValue for Option<T>
where T: ParameterValue,

Implementors§