Struct wita::InnerWindowBuilder[][src]

pub struct InnerWindowBuilder<W = (), P = (), S = ()> { /* fields omitted */ }

The object to build a window into the parent window.

Implementations

impl InnerWindowBuilder<(), (), ()>[src]

impl<W, P, S> InnerWindowBuilder<W, P, S>[src]

pub fn parent(self, parent: &Window) -> InnerWindowBuilder<Window, P, S>[src]

pub fn position<T>(self, position: T) -> InnerWindowBuilder<W, T, S>[src]

pub fn size<T>(self, size: T) -> InnerWindowBuilder<W, P, T>[src]

pub fn visible(self, visibility: bool) -> Self[src]

pub fn accept_drag_files(self) -> Self[src]

impl<P, S> InnerWindowBuilder<Window, P, S> where
    P: ToPhysicalPosition<i32>,
    S: ToPhysicalSize<u32>, 
[src]

pub fn build(self) -> Result<Window, ApiError>[src]

Auto Trait Implementations

impl<W, P, S> RefUnwindSafe for InnerWindowBuilder<W, P, S> where
    P: RefUnwindSafe,
    S: RefUnwindSafe,
    W: RefUnwindSafe

impl<W, P, S> Send for InnerWindowBuilder<W, P, S> where
    P: Send,
    S: Send,
    W: Send

impl<W, P, S> Sync for InnerWindowBuilder<W, P, S> where
    P: Sync,
    S: Sync,
    W: Sync

impl<W, P, S> Unpin for InnerWindowBuilder<W, P, S> where
    P: Unpin,
    S: Unpin,
    W: Unpin

impl<W, P, S> UnwindSafe for InnerWindowBuilder<W, P, S> where
    P: UnwindSafe,
    S: UnwindSafe,
    W: UnwindSafe

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