pub struct StyleColors {
pub name: String,
pub primary_raw: String,
pub primary_parsed: ColorDebugInfo,
pub secondary_raw: String,
pub outline_raw: String,
pub back_raw: String,
}Fields§
§name: String§primary_raw: String§primary_parsed: ColorDebugInfo§secondary_raw: String§outline_raw: String§back_raw: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for StyleColors
impl RefUnwindSafe for StyleColors
impl Send for StyleColors
impl Sync for StyleColors
impl Unpin for StyleColors
impl UnsafeUnpin for StyleColors
impl UnwindSafe for StyleColors
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