wgc 1.0.2

An ergonomic Rust wrapper for Windows.Graphics.Capture API
Documentation
1
2
3
4
5
6
7
#[derive(Debug, thiserror::Error, Clone)]
pub enum WgcError {
    #[error("Wgc: {0}")]
    WindowsError(#[from] windows::core::Error),
    #[error("No item selected")]
    NoItemSelected,
}