screencapturekit/cg/mod.rs
1//! Core Graphics types for screen coordinates and dimensions
2//!
3//! This module provides Rust equivalents of Core Graphics types used in
4//! `ScreenCaptureKit` for representing screen coordinates, sizes, and rectangles.
5
6mod point;
7mod rect;
8mod size;
9
10pub use point::CGPoint;
11pub use rect::CGRect;
12pub use size::CGSize;
13
14/// `CGDisplayID` type alias
15pub type CGDisplayID = u32;