pub struct BackgroundStyle { /* private fields */ }
Implementations§
Source§impl BackgroundStyle
impl BackgroundStyle
pub fn new() -> Self
pub fn color<C: Into<Color>>(self, color: C) -> Self
pub fn border_color<C: Into<Color>>(self, border_color: C) -> Self
pub fn border_width<F: Into<i64>>(self, border_width: F) -> Self
pub fn border_type<B: Into<BorderType>>(self, border_type: B) -> Self
pub fn border_radius<F: Into<i64>>(self, border_radius: F) -> Self
pub fn opacity<F: Into<i64>>(self, opacity: F) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BackgroundStyle
impl RefUnwindSafe for BackgroundStyle
impl Send for BackgroundStyle
impl Sync for BackgroundStyle
impl Unpin for BackgroundStyle
impl UnwindSafe for BackgroundStyle
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