relay_replays/
lib.rs

1//! Session replay protocol and processing for Sentry.
2//!
3//! [Session Replay] provides a video-like reproduction of user interactions on a site or web app.
4//! All user interactions — including page visits, mouse movements, clicks, and scrolls — are
5//! captured, helping developers connect the dots between a known issue and how a user experienced
6//! it in the UI.
7//!
8//! [session replay]: https://docs.sentry.io/product/session-replay/
9
10#![doc(
11    html_logo_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png",
12    html_favicon_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png"
13)]
14#![warn(missing_docs)]
15
16pub mod recording;