wayland-backend 0.3.16

Low-level bindings to the Wayland protocol
Documentation
//! Rust implementations of the Wayland backends

mod client_impl;
mod server_impl;

mod map;
pub(crate) mod socket;
mod wire;

// Matches `WL_BUFFER_DEFAULT_MAX_SIZE` in `libwayland`
pub(crate) const DEFAULT_MAX_BUFFER_SIZE: usize = 4096;

/// Client-side rust implementation of a Wayland protocol backend
///
/// The main entrypoint is the [`Backend::connect()`][client::Backend::connect()] method.
#[path = "../client_api.rs"]
pub mod client;

/// Server-side rust implementation of a Wayland protocol backend
///
/// The main entrypoint is the [`Backend::new()`][server::Backend::new()] method.
#[path = "../server_api.rs"]
pub mod server;