wl-proxy 0.1.2

Wayland connection proxy
Documentation
//! frame-perfect window management
//!
//! This protocol allows a single "window manager" client to determine the
//! window management policy of the compositor. State is globally
//! double-buffered allowing for frame perfect state changes involving multiple
//! windows.
//!
//! The key words "must", "must not", "required", "shall", "shall not",
//! "should", "should not", "recommended", "may", and "optional" in this
//! document are to be interpreted as described in IETF RFC 2119.

#![allow(clippy::tabs_in_doc_comments)]
#![allow(clippy::doc_lazy_continuation)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::manual_map)]
#![allow(clippy::module_inception)]
#![allow(clippy::needless_return)]
#![allow(clippy::manual_div_ceil)]
#![allow(clippy::match_single_binding)]
#![allow(clippy::collapsible_if)]
#![allow(clippy::doc_overindented_list_items)]
#![allow(unused_imports)]
#![allow(non_snake_case)]
#![allow(rustdoc::broken_intra_doc_links)]
#![allow(rustdoc::bare_urls)]
#![allow(rustdoc::invalid_rust_codeblocks)]

pub mod river_decoration_v1;
pub mod river_node_v1;
pub mod river_output_v1;
pub mod river_pointer_binding_v1;
pub mod river_seat_v1;
pub mod river_shell_surface_v1;
pub mod river_window_manager_v1;
pub mod river_window_v1;