patternfly-yew 0.7.4

PatternFly 5 components for Yew
Documentation
use crate::prelude::*;
use std::rc::Rc;
use yew::prelude::*;

#[derive(Clone, PartialEq)]
pub enum MenuChild {
    Action(Rc<<MenuAction as BaseComponent>::Properties>),
    Link(Rc<<MenuLink as BaseComponent>::Properties>),
    Divider(Rc<<ListDivider as BaseComponent>::Properties>),
    Group(Rc<<MenuGroup as BaseComponent>::Properties>),
    Loading(Rc<<MenuLoading as BaseComponent>::Properties>),
    Raw(Rc<<Raw as BaseComponent>::Properties>),
}

impl From<()> for MenuChild {
    fn from(_: ()) -> Self {
        MenuChild::Divider(Rc::new(()))
    }
}

impl From<MenuActionProperties> for MenuChild {
    fn from(props: MenuActionProperties) -> Self {
        MenuChild::Action(Rc::new(props))
    }
}

impl From<MenuLinkProperties> for MenuChild {
    fn from(props: MenuLinkProperties) -> Self {
        MenuChild::Link(Rc::new(props))
    }
}

impl From<MenuGroupProperties> for MenuChild {
    fn from(props: MenuGroupProperties) -> Self {
        MenuChild::Group(Rc::new(props))
    }
}

impl From<MenuLoadingProperties> for MenuChild {
    fn from(props: MenuLoadingProperties) -> Self {
        MenuChild::Loading(Rc::new(props))
    }
}

impl From<ChildrenProperties> for MenuChild {
    fn from(props: ChildrenProperties) -> Self {
        MenuChild::Raw(Rc::new(props))
    }
}