//! Handling requests and notifications received from Neovim.
//!
//! The core of a UI client is defining and implementing the
//! [`Handler`].
use io;
use ValueRef;
use crate;
/// A protocol-level response returned for a request from Neovim.
pub type ResponseValue<'a> = ;
/// The central functionality of a UI client.
/// The dummy handler ignores requests and notifications.
///
/// It can be used if a client only wants to send requests to Neovim and get
/// responses.
;