pub enum RgbProperties {
RED,
GREEN,
BLUE,
}
Variants§
Trait Implementations§
Source§impl AsRef<str> for RgbProperties
impl AsRef<str> for RgbProperties
Source§impl Display for RgbProperties
impl Display for RgbProperties
Source§impl<'_derivative_strum> From<&'_derivative_strum RgbProperties> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum RgbProperties> for &'static str
Source§fn from(x: &'_derivative_strum RgbProperties) -> &'static str
fn from(x: &'_derivative_strum RgbProperties) -> &'static str
Converts to this type from the input type.
Source§impl From<RgbProperties> for &'static str
impl From<RgbProperties> for &'static str
Source§fn from(x: RgbProperties) -> &'static str
fn from(x: RgbProperties) -> &'static str
Converts to this type from the input type.
Source§impl From<RgbProperties> for String
impl From<RgbProperties> for String
Source§fn from(p: RgbProperties) -> Self
fn from(p: RgbProperties) -> Self
Converts to this type from the input type.
Source§impl PropertyTypeDefinition for RgbProperties
impl PropertyTypeDefinition for RgbProperties
Source§fn property_name(&self) -> String
fn property_name(&self) -> String
The property name.
Source§fn default_value(&self) -> Value
fn default_value(&self) -> Value
The default value of the property.
Auto Trait Implementations§
impl Freeze for RgbProperties
impl RefUnwindSafe for RgbProperties
impl Send for RgbProperties
impl Sync for RgbProperties
impl Unpin for RgbProperties
impl UnwindSafe for RgbProperties
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more