pub struct Receiver {
pub index: u16,
pub x: u32,
pub y: u32,
pub width: u32,
pub height: u32,
}Expand description
A receiving card: where its window sits on the screen and how big it is.
Fields§
§index: u16§x: u32The card’s top-left on the screen: the same numbers given to
rxp provision --position x,y, which is what the card’s EEPROM
control area keeps of the stream.
y: u32§width: u32§height: u32Trait Implementations§
impl Copy for Receiver
Source§impl<'de> Deserialize<'de> for Receiver
impl<'de> Deserialize<'de> for Receiver
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Receiver
impl StructuralPartialEq for Receiver
Auto Trait Implementations§
impl Freeze for Receiver
impl RefUnwindSafe for Receiver
impl Send for Receiver
impl Sync for Receiver
impl Unpin for Receiver
impl UnsafeUnpin for Receiver
impl UnwindSafe for Receiver
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