#[repr(i32)]pub enum VncEncoding {
Raw = 0,
CopyRect = 1,
Tight = 7,
Trle = 15,
Zrle = 16,
CursorPseudo = -239,
DesktopSizePseudo = -223,
LastRectPseudo = -224,
}Expand description
All supported vnc encodings
Variants§
Raw = 0
CopyRect = 1
Tight = 7
Trle = 15
Zrle = 16
CursorPseudo = -239
DesktopSizePseudo = -223
LastRectPseudo = -224
Trait Implementations§
Source§impl Clone for VncEncoding
impl Clone for VncEncoding
Source§fn clone(&self) -> VncEncoding
fn clone(&self) -> VncEncoding
Returns a duplicate 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 VncEncoding
impl Debug for VncEncoding
Source§impl From<VncEncoding> for u32
impl From<VncEncoding> for u32
Source§fn from(e: VncEncoding) -> Self
fn from(e: VncEncoding) -> Self
Converts to this type from the input type.
Source§impl From<u32> for VncEncoding
impl From<u32> for VncEncoding
Source§impl PartialEq for VncEncoding
impl PartialEq for VncEncoding
impl Copy for VncEncoding
impl Eq for VncEncoding
impl StructuralPartialEq for VncEncoding
Auto Trait Implementations§
impl Freeze for VncEncoding
impl RefUnwindSafe for VncEncoding
impl Send for VncEncoding
impl Sync for VncEncoding
impl Unpin for VncEncoding
impl UnwindSafe for VncEncoding
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