pub struct Container<V> {
pub content: Pod<V>,
pub background: Option<Color>,
pub border_radius: Option<BorderRadius>,
pub border_width: Option<BorderWidth>,
pub border_color: Option<Color>,
pub mask: Option<bool>,
}
Expand description
A container view.
Fields§
§content: Pod<V>
The content.
background: Option<Color>
The background color.
border_radius: Option<BorderRadius>
The border radius.
border_width: Option<BorderWidth>
The border width.
border_color: Option<Color>
The border color.
mask: Option<bool>
Whether to mask the content.
Implementations§
Source§impl<V> Container<V>
impl<V> Container<V>
Sourcepub fn background(self, background: impl Into<Color>) -> Container<V>
pub fn background(self, background: impl Into<Color>) -> Container<V>
Set self.background
.
The background color.
Sourcepub fn border_radius(
self,
border_radius: impl Into<BorderRadius>,
) -> Container<V>
pub fn border_radius( self, border_radius: impl Into<BorderRadius>, ) -> Container<V>
Set self.border_radius
.
The border radius.
Sourcepub fn border_width(self, border_width: impl Into<BorderWidth>) -> Container<V>
pub fn border_width(self, border_width: impl Into<BorderWidth>) -> Container<V>
Set self.border_width
.
The border width.
Sourcepub fn border_color(self, border_color: impl Into<Color>) -> Container<V>
pub fn border_color(self, border_color: impl Into<Color>) -> Container<V>
Set self.border_color
.
The border color.
Trait Implementations§
Source§impl<V> Stylable for Container<V>
impl<V> Stylable for Container<V>
Source§impl<T, V> View<T> for Container<V>where
V: View<T>,
impl<T, V> View<T> for Container<V>where
V: View<T>,
Source§type State = (ContainerStyle, PodState<T, V>)
type State = (ContainerStyle, PodState<T, V>)
The state of the view, see top-level documentation for more information.
Source§fn build(
&mut self,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
) -> <Container<V> as View<T>>::State
fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> <Container<V> as View<T>>::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
_: &mut <Container<V> as View<T>>::State,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &Container<V>,
)
fn rebuild( &mut self, _: &mut <Container<V> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Container<V>, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
_: &mut <Container<V> as View<T>>::State,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn event( &mut self, _: &mut <Container<V> as View<T>>::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event, see top-level documentation for more information.
Auto Trait Implementations§
impl<V> Freeze for Container<V>where
V: Freeze,
impl<V> RefUnwindSafe for Container<V>where
V: RefUnwindSafe,
impl<V> Send for Container<V>where
V: Send,
impl<V> Sync for Container<V>where
V: Sync,
impl<V> Unpin for Container<V>where
V: Unpin,
impl<V> UnwindSafe for Container<V>where
V: UnwindSafe,
Blanket Implementations§
Source§impl<T, V> AnyView<T> for V
impl<T, V> AnyView<T> for V
Source§fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
Build the view.
Source§fn dyn_rebuild(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &dyn AnyView<T>,
)
fn dyn_rebuild( &mut self, state: &mut Box<dyn Any>, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &dyn AnyView<T>, )
Rebuild the view.
Source§fn dyn_event(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn dyn_event( &mut self, state: &mut Box<dyn Any>, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event.
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