Enum patternfly_yew::Color
source · pub enum Color {
Grey,
Blue,
Green,
Orange,
Red,
Purple,
Cyan,
}Variants§
Trait Implementations§
impl Copy for Color
impl Eq for Color
impl StructuralEq for Color
impl StructuralPartialEq for Color
Auto Trait Implementations§
impl RefUnwindSafe for Color
impl Send for Color
impl Sync for Color
impl Unpin for Color
impl UnwindSafe for Color
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<T> IntoPropValue<Option<T>> for T
impl<T> IntoPropValue<Option<T>> for T
source§fn into_prop_value(self) -> Option<T>
fn into_prop_value(self) -> Option<T>
Convert
self to a value of a Properties struct.source§impl<T> IntoPropValue<T> for T
impl<T> IntoPropValue<T> for T
source§fn into_prop_value(self) -> T
fn into_prop_value(self) -> T
Convert
self to a value of a Properties struct.source§impl<T> Switch for Twhere
T: FromStr + Display,
impl<T> Switch for Twhere
T: FromStr + Display,
source§fn from_route_part<U>(part: String, state: Option<U>) -> (Option<T>, Option<U>)
fn from_route_part<U>(part: String, state: Option<U>) -> (Option<T>, Option<U>)
Get self from a part of the state
source§fn build_route_section<U>(self, route: &mut String) -> Option<U>
fn build_route_section<U>(self, route: &mut String) -> Option<U>
Build part of a route from itself.
source§fn switch<STATE>(route: Route<STATE>) -> Option<Self>
fn switch<STATE>(route: Route<STATE>) -> Option<Self>
Based on a route, possibly produce an itself.
source§fn key_not_available() -> Option<Self>
fn key_not_available() -> Option<Self>
Called when the key (the named capture group) can’t be located. Instead of failing outright,
a default item can be provided instead. Read more