mrml 1.2.2

Rust implementation of MJML renderer
Documentation
use super::MJNavbar;
use super::MJNavbarChild;
use crate::prelude::parse::{Error, Parsable, Parser};
use crate::{parse_attribute, parse_child, parse_comment};
use xmlparser::{StrSpan, Tokenizer};

#[derive(Debug, Default)]
struct MJNavbarParser(MJNavbar);

impl Parser for MJNavbarParser {
    type Output = MJNavbar;

    fn build(self) -> Result<Self::Output, Error> {
        Ok(self.0)
    }

    parse_attribute!();
    parse_child!(MJNavbarChild);
    parse_comment!();
}

impl Parsable for MJNavbar {
    fn parse(_tag: StrSpan, tokenizer: &mut Tokenizer) -> Result<Self, Error> {
        MJNavbarParser::default().parse(tokenizer)?.build()
    }
}