[][src]Struct wayland_server::Global

pub struct Global<I: Interface> { /* fields omitted */ }

A handle to a global object

This is given to you when you register a global to the event loop.

This handle allows you do destroy the global when needed.

If you know you will never destroy this global, you can let this handle go out of scope.

Methods

impl<I: Interface> Global<I>[src]

pub fn destroy(self)[src]

Destroy the associated global object.

Auto Trait Implementations

impl<I> !Send for Global<I>

impl<I> !Sync for Global<I>

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

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

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Downcast for T where
    T: Any
[src]