codetether-browser 0.1.0

Browser automation runtime for CodeTether
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Page content readers for the native backend.

mod html;
mod snapshot;
mod text;
mod title;

/// HTML reader.
pub(super) use html::html;
/// Snapshot reader.
pub(super) use snapshot::snapshot;
/// Text reader.
pub(super) use text::text;
/// Title reader.
pub(super) use title::title;