Enum x11cap::CaptureSource [] [src]

pub enum CaptureSource {
    Region {
        x: i32,
        y: i32,
        width: u32,
        height: u32,
    },
    Monitor(usize),
}

Capture either a region of the total display area, or capture the output of a specific monitor

Variants

Fields of Region