pub struct CapturableWindowFilter {
pub desktop_windows: bool,
pub onscreen_only: bool,
}
Expand description
Selects the kind of windows to enumerate for capture
Fields§
§desktop_windows: bool
Desktop windows are elements of the desktop environment, E.G. the dock on MacOS or the start bar on Windows.
onscreen_only: bool
Whether to restrict to onscreen windows
Trait Implementations§
source§impl Clone for CapturableWindowFilter
impl Clone for CapturableWindowFilter
source§fn clone(&self) -> CapturableWindowFilter
fn clone(&self) -> CapturableWindowFilter
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for CapturableWindowFilter
impl RefUnwindSafe for CapturableWindowFilter
impl Send for CapturableWindowFilter
impl Sync for CapturableWindowFilter
impl Unpin for CapturableWindowFilter
impl UnwindSafe for CapturableWindowFilter
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