[][src]Struct coffee::ui::core::Layout

pub struct Layout<'a> { /* fields omitted */ }

The computed bounds of a Node and its children.

This type is provided by the GUI runtime to Widget::on_event and Widget::draw, describing the layout of the produced Node by Widget::node.

Methods

impl<'a> Layout<'a>[src]

pub fn bounds(&self) -> Rectangle<f32>[src]

Gets the bounds of the Layout.

The returned Rectangle describes the position and size of a Node.

pub fn children(&'a self) -> impl Iterator<Item = Layout<'a>>[src]

Returns an iterator over the Layout of the children of a Node.

Trait Implementations

impl<'a> Debug for Layout<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Layout<'a>

impl<'a> Send for Layout<'a>

impl<'a> Sync for Layout<'a>

impl<'a> Unpin for Layout<'a>

impl<'a> UnwindSafe for Layout<'a>

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> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,