pub struct GradientTheme {Show 14 fields
pub top_left: GradientVariation,
pub top_right: GradientVariation,
pub bottom_left: GradientVariation,
pub bottom_right: GradientVariation,
pub double_corners_right: GradientVariation,
pub double_corners_left: GradientVariation,
pub vertical: GradientVariation,
pub horizontal: GradientVariation,
pub up: GradientVariation,
pub down: GradientVariation,
pub left: GradientVariation,
pub right: GradientVariation,
pub misc1: GradientVariation,
pub misc2: GradientVariation,
}Fields§
§top_left: GradientVariation§top_right: GradientVariation§bottom_left: GradientVariation§bottom_right: GradientVariation§double_corners_right: GradientVariation§double_corners_left: GradientVariation§vertical: GradientVariation§horizontal: GradientVariation§up: GradientVariation§down: GradientVariation§left: GradientVariation§right: GradientVariation§misc1: GradientVariation§misc2: GradientVariationAuto Trait Implementations§
impl Freeze for GradientTheme
impl !RefUnwindSafe for GradientTheme
impl !Send for GradientTheme
impl !Sync for GradientTheme
impl Unpin for GradientTheme
impl !UnwindSafe for GradientTheme
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