Struct wayland_protocols::wlr::unstable::screencopy::v1::client::zwlr_screencopy_manager_v1::ZwlrScreencopyManagerV1
source · pub struct ZwlrScreencopyManagerV1(/* private fields */);
Implementations§
source§impl ZwlrScreencopyManagerV1
impl ZwlrScreencopyManagerV1
sourcepub fn capture_output(
&self,
overlay_cursor: i32,
output: &WlOutput
) -> Main<ZwlrScreencopyFrameV1>
pub fn capture_output( &self, overlay_cursor: i32, output: &WlOutput ) -> Main<ZwlrScreencopyFrameV1>
capture an output
Capture the next frame of an entire output.
sourcepub fn capture_output_region(
&self,
overlay_cursor: i32,
output: &WlOutput,
x: i32,
y: i32,
width: i32,
height: i32
) -> Main<ZwlrScreencopyFrameV1>
pub fn capture_output_region( &self, overlay_cursor: i32, output: &WlOutput, x: i32, y: i32, width: i32, height: i32 ) -> Main<ZwlrScreencopyFrameV1>
capture an output’s region
Capture the next frame of an output’s region.
The region is given in output logical coordinates, see xdg_output.logical_size. The region will be clipped to the output’s extents.
Trait Implementations§
source§impl Clone for ZwlrScreencopyManagerV1
impl Clone for ZwlrScreencopyManagerV1
source§fn clone(&self) -> ZwlrScreencopyManagerV1
fn clone(&self) -> ZwlrScreencopyManagerV1
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 moresource§impl Debug for ZwlrScreencopyManagerV1
impl Debug for ZwlrScreencopyManagerV1
source§impl From<ZwlrScreencopyManagerV1> for Proxy<ZwlrScreencopyManagerV1>
impl From<ZwlrScreencopyManagerV1> for Proxy<ZwlrScreencopyManagerV1>
source§fn from(value: ZwlrScreencopyManagerV1) -> Self
fn from(value: ZwlrScreencopyManagerV1) -> Self
Converts to this type from the input type.
source§impl Interface for ZwlrScreencopyManagerV1
impl Interface for ZwlrScreencopyManagerV1
source§fn c_interface() -> *const wl_interface
fn c_interface() -> *const wl_interface
Pointer to the C representation of this interface
source§impl PartialEq for ZwlrScreencopyManagerV1
impl PartialEq for ZwlrScreencopyManagerV1
source§fn eq(&self, other: &ZwlrScreencopyManagerV1) -> bool
fn eq(&self, other: &ZwlrScreencopyManagerV1) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ZwlrScreencopyManagerV1
impl StructuralEq for ZwlrScreencopyManagerV1
impl StructuralPartialEq for ZwlrScreencopyManagerV1
Auto Trait Implementations§
impl !RefUnwindSafe for ZwlrScreencopyManagerV1
impl Send for ZwlrScreencopyManagerV1
impl Sync for ZwlrScreencopyManagerV1
impl Unpin for ZwlrScreencopyManagerV1
impl !UnwindSafe for ZwlrScreencopyManagerV1
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