[][src]Struct guion::widgets::pane::Pane

pub struct Pane<'w, T, E> where
    E: Env,
    T: Statize + Sized + 'w, 
{ pub childs: T, pub orientation: Orientation, pub border: Option<Border>, // some fields omitted }

Fields

childs: Torientation: Orientationborder: Option<Border>

Methods

impl<'w, T, E> Pane<'w, T, E> where
    E: Env,
    T: Statize + Sized + 'w, 
[src]

pub fn new(
    id: E::WidgetID,
    childs: T,
    orientation: Orientation
) -> Pane<'w, T, E>
[src]

Trait Implementations

impl<'w, T, E> Widget<'w, E> for Pane<'w, T, E> where
    T: WidgetArray<'w, E> + Statize,
    T::Statur: Statize + Sized,
    E: Env
[src]

impl<'w, T, E> WidgetMut<'w, E> for Pane<'w, T, E> where
    T: WidgetArrayMut<'w, E> + Statize,
    T::Statur: Statize + Sized,
    E: Env
[src]

Auto Trait Implementations

impl<'w, T, E> RefUnwindSafe for Pane<'w, T, E> where
    T: RefUnwindSafe,
    <E as Env>::WidgetID: RefUnwindSafe

impl<'w, T, E> Send for Pane<'w, T, E> where
    T: Send,
    <E as Env>::WidgetID: Send

impl<'w, T, E> Sync for Pane<'w, T, E> where
    T: Sync,
    <E as Env>::WidgetID: Sync

impl<'w, T, E> Unpin for Pane<'w, T, E> where
    T: Unpin,
    <E as Env>::WidgetID: Unpin

impl<'w, T, E> !UnwindSafe for Pane<'w, T, E>

Blanket Implementations

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

impl<'w, E, T> AsWidget<'w, E> for T where
    E: Env,
    T: Widget<'w, E>, 
[src]

impl<'w, E, T> AsWidgetMut<'w, E> for T where
    E: Env,
    T: WidgetMut<'w, E>, 
[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, 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.