vncrs 0.1.8

A pure Rust VNC server library for Windows
use thiserror::Error;

#[derive(Error, Debug)]
pub enum VncError {
    #[error("IO error: {0}")]
    Io(#[from] std::io::Error),

    #[error("Handshake failed: {0}")]
    Handshake(String),

    #[error("Protocol error: {0}")]
    Protocol(String),

    #[error("Authentication failed")]
    AuthFailed,

    #[error("Message too large: {0} bytes (max {1})")]
    MessageTooLarge(usize, usize),

    #[error("Unsupported protocol version: {0}")]
    UnsupportedVersion(String),

    #[error("Screen capture error: {0}")]
    Capture(String),

    #[error("Encoding error: {0}")]
    Encoding(String),
}

pub type Result<T> = std::result::Result<T, VncError>;