sentry-types 0.13.3

Common reusable types for implementing the sentry.io protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module exposes the types for the Sentry protocol in different versions.

#[cfg(feature = "with_protocol")]
pub mod v7;

/// The latest version of the protocol.
pub const LATEST: u16 = 7;

/// the always latest sentry protocol version
#[cfg(feature = "with_protocol")]
pub mod latest {
    pub use super::v7::*;
}