summaryrefslogtreecommitdiff
path: root/src/remote/rvi/mod.rs
blob: a6791bc8388c46bfdf1983e4ca1fba39d26f0969 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! RVI bindings for Rust.
//!
//! RVI - Remote Vehicle Interaction - is the next generation of connected vehicle services. Based
//! on the discussions inside and outside the Automotive Grade Linux expert group.
//!
//! This module implements Rust bindings to simplify the interaction with it.
//!
//! It is intended to be split out into a separate crate at some point in the future.

mod edge;
mod send;
mod message;

// Export public interface
pub use super::rvi::edge::{ServiceEdge, ServiceHandler};
pub use super::rvi::send::send;
pub use super::rvi::send::send_message;
pub use super::rvi::message::Message;