Struct iced_native::layout::Layout[][src]

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

The bounds of a Node and its children, using absolute coordinates.

Implementations

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

pub fn new(node: &'a Node) -> Self[src]

Creates a new Layout for the given Node at the origin.

pub fn with_offset(offset: Vector, node: &'a Node) -> Self[src]

Creates a new Layout for the given Node with the provided offset from the origin.

pub fn position(&self) -> Point[src]

Returns the position of the Layout.

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

Returns the bounds of the Layout.

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

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

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

Trait Implementations

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

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

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,