pub enum CaptureSource {
Region {
x: i32,
y: i32,
width: u32,
height: u32,
},
Monitor(usize),
}
Expand description
Capture either a region of the total display area, or capture the output of a specific monitor
Variants§
Auto Trait Implementations§
impl Freeze for CaptureSource
impl RefUnwindSafe for CaptureSource
impl Send for CaptureSource
impl Sync for CaptureSource
impl Unpin for CaptureSource
impl UnwindSafe for CaptureSource
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more