#[repr(C)]pub struct mxr_video_wall_command_t {
pub target: mxr_uid_t,
pub pos_x: u16,
pub pos_y: u16,
pub width: u16,
pub height: u16,
pub raster_w: u16,
pub raster_h: u16,
pub op: u8,
}Expand description
Asks one sink to crop its source to a wall window.
The window replaces the sink’s outright: a zero width or height is the wire spelling of “clear the wall and show the full frame”, not of “unset”. A revert carries no window, and the geometry in it means nothing.
Fields§
§target: mxr_uid_tThe sink to act on.
pos_x: u16Window origin, horizontal.
pos_y: u16Window origin, vertical.
width: u16Window width.
height: u16Window height.
raster_w: u16Active picture width the window was authored against.
raster_h: u16Active picture height the window was authored against.
op: u80 preview, 1 store, 2 revert.
Trait Implementations§
Source§impl Clone for mxr_video_wall_command_t
impl Clone for mxr_video_wall_command_t
Source§fn clone(&self) -> mxr_video_wall_command_t
fn clone(&self) -> mxr_video_wall_command_t
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for mxr_video_wall_command_t
Auto Trait Implementations§
impl Freeze for mxr_video_wall_command_t
impl RefUnwindSafe for mxr_video_wall_command_t
impl Send for mxr_video_wall_command_t
impl Sync for mxr_video_wall_command_t
impl Unpin for mxr_video_wall_command_t
impl UnsafeUnpin for mxr_video_wall_command_t
impl UnwindSafe for mxr_video_wall_command_t
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