Trait freya_node_state::ParseAttribute

source ·
pub trait ParseAttribute: Sized {
    // Required method
    fn parse_attribute(
        &mut self,
        attr: OwnedAttributeView<'_, CustomAttributeValues>,
    ) -> Result<(), ParseError>;

    // Provided method
    fn parse_safe(
        &mut self,
        attr: OwnedAttributeView<'_, CustomAttributeValues>,
    ) { ... }
}

Required Methods§

source

fn parse_attribute( &mut self, attr: OwnedAttributeView<'_, CustomAttributeValues>, ) -> Result<(), ParseError>

Provided Methods§

source

fn parse_safe(&mut self, attr: OwnedAttributeView<'_, CustomAttributeValues>)

Object Safety§

This trait is not object safe.

Implementors§