pub struct V2ipTilingConfig {
pub target: DeviceUid,
pub pos_x: u16,
pub pos_y: u16,
pub width: u16,
pub height: u16,
}Expand description
The window a sink is currently told to show.
This is the readable, pollable view of a sink’s window. It is not the
persisted video wall setting: on a sink running the v2ipwall module a write
here is transient, because that module’s reconciler pushes its own target
window back within about a second. VideoWallCommand carries intent.
Fields§
§target: DeviceUidThe sink this window belongs to.
pos_x: u16Window origin, horizontal.
pos_y: u16Window origin, vertical.
width: u16Window width.
height: u16Window height.
Trait Implementations§
Source§impl Clone for V2ipTilingConfig
impl Clone for V2ipTilingConfig
Source§fn clone(&self) -> V2ipTilingConfig
fn clone(&self) -> V2ipTilingConfig
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 V2ipTilingConfig
Source§impl Debug for V2ipTilingConfig
impl Debug for V2ipTilingConfig
Source§impl Default for V2ipTilingConfig
impl Default for V2ipTilingConfig
Source§fn default() -> V2ipTilingConfig
fn default() -> V2ipTilingConfig
Returns the “default value” for a type. Read more
Source§impl Display for V2ipTilingConfig
impl Display for V2ipTilingConfig
impl Eq for V2ipTilingConfig
Source§impl PartialEq for V2ipTilingConfig
impl PartialEq for V2ipTilingConfig
impl StructuralPartialEq for V2ipTilingConfig
Auto Trait Implementations§
impl Freeze for V2ipTilingConfig
impl RefUnwindSafe for V2ipTilingConfig
impl Send for V2ipTilingConfig
impl Sync for V2ipTilingConfig
impl Unpin for V2ipTilingConfig
impl UnsafeUnpin for V2ipTilingConfig
impl UnwindSafe for V2ipTilingConfig
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