//! Rust implementations of the Wayland backends
pub
// Matches `WL_BUFFER_DEFAULT_MAX_SIZE` in `libwayland`
pub 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.
/// Server-side rust implementation of a Wayland protocol backend
///
/// The main entrypoint is the [`Backend::new()`][server::Backend::new()] method.