Trait FeelTypedElement

Source
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§