Struct components::Window[][src]

pub struct Window {
    pub stage: Stage,
    // some fields omitted
}

Fields

stage: Stage

Implementations

impl Window[src]

pub fn new() -> Window[src]

pub fn with_stage(stage: &Stage) -> Window[src]

new_with_clutter_stage: @stage: A #Stage

Creates a new #Stage, using @stage as the backing #Stage. This function is meant for use primarily for embedding a #Stage into a foreign stage when using a toolkit integration library.

Returns: A #Stage

pub fn get_for_stage(stage: &Stage) -> Option<Window>[src]

get_for_stage: @stage: A #Stage

Gets the #Stage parent of the #Stage, if it exists.

Returns: (transfer none): A #Stage, or %None

pub fn test_check(&self) -> String[src]

Trait Implementations

impl AsRef<Window> for Window[src]

impl Clone for Window[src]

impl Debug for Window[src]

impl Default for Window[src]

impl Display for Window[src]

impl Is<Window> for Window[src]

impl Object for Window[src]

Auto Trait Implementations

impl !RefUnwindSafe for Window

impl !Send for Window

impl !Sync for Window

impl Unpin for Window

impl UnwindSafe for Window

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<Fr, To> IntoColor<To> for Fr where
    To: FromColor<Fr>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.

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