patternfly-yew 0.7.4

PatternFly 5 components for Yew
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Trait for rendering an item in a DualListSelector component.

use core::fmt::Debug;

use yew::html::IntoPropValue;
use yew::prelude::*;

pub trait DualListSelectorItemRenderer:
    Debug + Clone + PartialEq + IntoPropValue<Html> + 'static
{
}

impl<T: IntoPropValue<Html> + Debug + Clone + PartialEq + 'static> DualListSelectorItemRenderer
    for T
{
}