pub trait ObjectMetadata: Clone {
    // Required method
    fn child(&self) -> Self;
}
Expand description

A trait representing the metadata a wayland implementation may attach to an object.

Required Methods§

source

fn child(&self) -> Self

Create the metadata for a child object

Mostly needed for client side, to propagate the event queues

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ObjectMetadata for ()

source§

fn child(&self)

Implementors§