Enum patternfly_yew::SelectChild
source · [−]pub enum SelectChild<K> where
K: 'static + Clone + PartialEq + Display + Debug, {
Option(Rc<<SelectOption<K> as Component>::Properties>),
Divider(Rc<<Divider as Component>::Properties>),
Group(Rc<<SelectGroup<K> as Component>::Properties>),
}Variants
Option(Rc<<SelectOption<K> as Component>::Properties>)
Divider(Rc<<Divider as Component>::Properties>)
Group(Rc<<SelectGroup<K> as Component>::Properties>)
Trait Implementations
sourceimpl<K: Clone> Clone for SelectChild<K> where
K: 'static + Clone + PartialEq + Display + Debug,
impl<K: Clone> Clone for SelectChild<K> where
K: 'static + Clone + PartialEq + Display + Debug,
sourcefn clone(&self) -> SelectChild<K>
fn clone(&self) -> SelectChild<K>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<K> From<SelectGroupProps<K>> for SelectChild<K> where
K: Clone + PartialEq + Display + Debug,
impl<K> From<SelectGroupProps<K>> for SelectChild<K> where
K: Clone + PartialEq + Display + Debug,
sourcefn from(props: SelectGroupProps<K>) -> Self
fn from(props: SelectGroupProps<K>) -> Self
Converts to this type from the input type.
sourceimpl<K> From<SelectOptionProps<K>> for SelectChild<K> where
K: Clone + PartialEq + Display + Debug,
impl<K> From<SelectOptionProps<K>> for SelectChild<K> where
K: Clone + PartialEq + Display + Debug,
sourcefn from(props: SelectOptionProps<K>) -> Self
fn from(props: SelectOptionProps<K>) -> Self
Converts to this type from the input type.
sourceimpl<K: PartialEq> PartialEq<SelectChild<K>> for SelectChild<K> where
K: 'static + Clone + PartialEq + Display + Debug,
impl<K: PartialEq> PartialEq<SelectChild<K>> for SelectChild<K> where
K: 'static + Clone + PartialEq + Display + Debug,
sourcefn eq(&self, other: &SelectChild<K>) -> bool
fn eq(&self, other: &SelectChild<K>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl<K> StructuralPartialEq for SelectChild<K> where
K: 'static + Clone + PartialEq + Display + Debug,
Auto Trait Implementations
impl<K> !RefUnwindSafe for SelectChild<K>
impl<K> !Send for SelectChild<K>
impl<K> !Sync for SelectChild<K>
impl<K> Unpin for SelectChild<K>
impl<K> !UnwindSafe for SelectChild<K>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> IntoPropValue<Option<T>> for T
impl<T> IntoPropValue<Option<T>> for T
sourcefn into_prop_value(self) -> Option<T>
fn into_prop_value(self) -> Option<T>
Convert self to a value of a Properties struct.
sourceimpl<T> IntoPropValue<T> for T
impl<T> IntoPropValue<T> for T
sourcefn into_prop_value(self) -> T
fn into_prop_value(self) -> T
Convert self to a value of a Properties struct.