[][src]Struct druid::LayoutCtx

pub struct LayoutCtx<'a> {
    text_factory: &'a mut Text,
    window_id: WindowId,
}

A context provided to layout handling methods of widgets.

As of now, the main service provided is access to a factory for creating text layout objects, which are likely to be useful during widget layout.

Fields

text_factory: &'a mut Textwindow_id: WindowId

Methods

impl<'a, 'b> LayoutCtx<'a>[src]

pub fn text(&mut self) -> &mut Text[src]

Get an object which can create text layouts.

pub fn window_id(&self) -> WindowId[src]

Get the window id.

Auto Trait Implementations

impl<'a> Send for LayoutCtx<'a>

impl<'a> Sync for LayoutCtx<'a>

impl<'a> Unpin for LayoutCtx<'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> RoundFrom<T> for T[src]

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 
[src]

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

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.