[][src]Struct wayland_client::protocol::wl_subcompositor::WlSubcompositor

pub struct WlSubcompositor(_);

Implementations

impl WlSubcompositor[src]

pub fn destroy(&self)[src]

unbind from the subcompositor interface

Informs the server that the client will not be using this protocol object anymore. This does not affect any other objects, wl_subsurface objects included.

This is a destructor, you cannot send requests to this object any longer once this method is called.

pub fn get_subsurface(
    &self,
    surface: &WlSurface,
    parent: &WlSurface
) -> Main<WlSubsurface>
[src]

give a surface the role sub-surface

Create a sub-surface interface for the given surface, and associate it with the given parent surface. This turns a plain wl_surface into a sub-surface.

The to-be sub-surface must not already have another role, and it must not have an existing wl_subsurface object. Otherwise a protocol error is raised.

Adding sub-surfaces to a parent is a double-buffered operation on the parent (see wl_surface.commit). The effect of adding a sub-surface becomes visible on the next time the state of the parent surface is applied.

This request modifies the behaviour of wl_surface.commit request on the sub-surface, see the documentation on wl_subsurface interface.

Trait Implementations

impl AsRef<Proxy<WlSubcompositor>> for WlSubcompositor[src]

impl Clone for WlSubcompositor[src]

impl Debug for WlSubcompositor[src]

impl Eq for WlSubcompositor[src]

impl From<Proxy<WlSubcompositor>> for WlSubcompositor[src]

impl From<WlSubcompositor> for Proxy<WlSubcompositor>[src]

impl Interface for WlSubcompositor[src]

type Request = Request

Set of requests associated to this interface Read more

type Event = Event

Set of events associated to this interface Read more

impl PartialEq<WlSubcompositor> for WlSubcompositor[src]

impl StructuralEq for WlSubcompositor[src]

impl StructuralPartialEq for WlSubcompositor[src]

Auto Trait Implementations

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> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.