pub trait FeelTypedElement {
    // Required methods
    fn feel_type(&self) -> &Option<FeelType>;
    fn set_feel_type(&mut self, feel_type: FeelType);
}
Expand description

FeelTypedElement adds the FEEL type attributes to element.

Required Methods§

source

fn feel_type(&self) -> &Option<FeelType>

Returns the optional FEEL type for this element.

source

fn set_feel_type(&mut self, feel_type: FeelType)

Sets FEEL type for this element.

Implementors§