nvim_rs/rpc/
mod.rs

1//! RPC functionality for [`neovim`](crate::neovim::Neovim)
2//!
3//! For most plugins, the main implementation work will consist of defining and
4//! implementing the [`handler`](crate::rpc::handler::Handler).
5pub mod handler;
6pub mod model;
7pub mod unpack;
8
9pub use self::model::{IntoVal, RpcMessage};
10pub use rmpv::Value;