Struct wayland_client::protocol::wl_subcompositor::WlSubcompositor [−][src]
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]
&self,
surface: &WlSurface,
parent: &WlSurface
) -> Main<WlSubsurface>
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]
fn clone(&self) -> WlSubcompositor
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[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]
fn from(value: WlSubcompositor) -> Self
[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
const NAME: &'static str
[src]
const VERSION: u32
[src]
fn c_interface() -> *const wl_interface
[src]
impl PartialEq<WlSubcompositor> for WlSubcompositor
[src]
fn eq(&self, other: &WlSubcompositor) -> bool
[src]
fn ne(&self, other: &WlSubcompositor) -> bool
[src]
impl StructuralEq for WlSubcompositor
[src]
impl StructuralPartialEq for WlSubcompositor
[src]
Auto Trait Implementations
impl !RefUnwindSafe for WlSubcompositor
impl Send for WlSubcompositor
impl Sync for WlSubcompositor
impl Unpin for WlSubcompositor
impl !UnwindSafe for WlSubcompositor
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Downcast for T where
T: Any,
[src]
T: Any,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
[src]
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
[src]
pub fn as_any(&self) -> &(dyn Any + 'static)
[src]
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
[src]
impl<T> DowncastSync for T where
T: Send + Sync + Any,
[src]
T: Send + Sync + Any,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,