scap 0.0.8

Modern, high-performance screen capture library for Rust. Cross-platform.
1
2
3
4
5
6
7
use super::Target;

// On Linux, the target is selected when a Recorder is instanciated because this
// requires user interaction
pub fn get_all_targets() -> Vec<Target> {
    Vec::new()
}