pub struct RreEncoding;Expand description
Implements the VNC “RRE” (Rise-and-Run-length Encoding).
RRE encodes a rectangle as a background color plus a list of subrectangles with their own colors. Format: [nSubrects(u32)][bgColor][subrect1]…[subrectN] Each subrect: [color][x(u16)][y(u16)][w(u16)][h(u16)]
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RreEncoding
impl RefUnwindSafe for RreEncoding
impl Send for RreEncoding
impl Sync for RreEncoding
impl Unpin for RreEncoding
impl UnwindSafe for RreEncoding
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