[][src]Struct druid::widget::Container

pub struct Container<T> { /* fields omitted */ }

A widget that provides simple visual styling options to a child.

Implementations

impl<T: Data> Container<T>[src]

pub fn new(inner: impl Widget<T> + 'static) -> Self[src]

Create Container with a child

pub fn background(self, brush: impl Into<BackgroundBrush<T>>) -> Self[src]

Set the background for this widget.

This can be passed anything which can be represented by a BackgroundBrush; noteably, it can be any Color, a Key<Color> resolvable in the Env, any gradient, or a fully custom Painter widget.

pub fn border(
    self,
    color: impl Into<KeyOrValue<Color>>,
    width: impl Into<KeyOrValue<f64>>
) -> Self
[src]

Paint a border around the widget with a color and width.

Arguments can be either concrete values, or a Key of the respective type.

pub fn rounded(self, radius: f64) -> Self[src]

Round off corners of this container by setting a corner radius

Trait Implementations

impl<T: Data> Widget<T> for Container<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Container<T>

impl<T> !Send for Container<T>

impl<T> !Sync for Container<T>

impl<T> Unpin for Container<T> where
    T: Unpin

impl<T> !UnwindSafe for Container<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> RoundFrom<T> for T

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.