foxglove 0.20.0

Foxglove SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc(hidden)]
//! Implementation of the Foxglove protocol

// Common is kept internal to the protocol module; common messages are re-exported from specific protocol version modules as-needed.
// End users should only use a specific protocol version module.
mod common;
use common::{BinaryMessage, BinaryPayload, JsonMessage, ParseError};
use common::{parameter, schema};

// Protocol v1, used by the Foxglove WebSocket server/client
pub mod v1;

// Protocol v2
#[allow(unused)]
pub mod v2;