pub struct ContainerStyle {
pub background: Color,
pub border_radius: BorderRadius,
pub border_width: BorderWidth,
pub border_color: Color,
pub mask: bool,
}
Expand description
The style of a container.
Fields§
§background: Color
The background color.
border_radius: BorderRadius
The border radius.
border_width: BorderWidth
The border width.
border_color: Color
The border color.
mask: bool
Whether to mask the content.
Trait Implementations§
Source§impl Clone for ContainerStyle
impl Clone for ContainerStyle
Source§fn clone(&self) -> ContainerStyle
fn clone(&self) -> ContainerStyle
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Rebuild for ContainerStyle
impl Rebuild for ContainerStyle
Source§fn rebuild(&self, cx: &mut RebuildCx<'_, '_>, old: &ContainerStyle)
fn rebuild(&self, cx: &mut RebuildCx<'_, '_>, old: &ContainerStyle)
Rebuild the view.
Source§impl Style for ContainerStyle
impl Style for ContainerStyle
Source§fn default_style() -> StyleBuilder<ContainerStyle>
fn default_style() -> StyleBuilder<ContainerStyle>
The default style of the object.
Auto Trait Implementations§
impl Freeze for ContainerStyle
impl RefUnwindSafe for ContainerStyle
impl Send for ContainerStyle
impl Sync for ContainerStyle
impl Unpin for ContainerStyle
impl UnwindSafe for ContainerStyle
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