re_lenses 0.31.3

Lenses are an API for extracting, transforming, and restructuring component data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Re-exports of all available element-level transform ops.

pub mod basic;
pub mod semantic;
pub mod string;

// TODO(grtlr): We expose these functions here in the same format as we would call
// them in a future selector runtime. This might help with creating better convenience
// functions/macros around selector parsing in the future.

pub use self::{
    basic::cast,
    semantic::{binary_to_list_uint8, string_to_video_codec, timespec_to_nanos},
    string::{string_prefix, string_prefix_nonempty, string_suffix, string_suffix_nonempty},
};