euv-cli 0.5.13

The official CLI tool for the euv UI framework, providing dev/release profiles with run/build modes, hot reload, and wasm-pack integration.
use crate::*;

/// Implements `Display` for `EuvError` to provide human-readable error messages.
impl std::fmt::Display for EuvError {
    /// Formats the error message based on the variant.
    ///
    /// # Arguments
    ///
    /// - `&mut std::fmt::Formatter` - The formatter.
    ///
    /// # Returns
    ///
    /// - `std::fmt::Result` - The result of the formatting operation.
    fn fmt(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            EuvError::Io { message, error } => write!(formatter, "{message}: {error}"),
            EuvError::IoPath {
                message,
                path,
                error,
            } => {
                write!(formatter, "{message} '{}': {error}", path.display())
            }
            EuvError::Utf8 { message, error } => write!(formatter, "{message}: {error}"),
            EuvError::Server(message) => write!(formatter, "{message}"),
            EuvError::Message(message) => write!(formatter, "{message}"),
            EuvError::Watch(error) => write!(formatter, "{error}"),
        }
    }
}

/// Implements `Error` for `EuvError` so it integrates with the Rust error ecosystem.
impl std::error::Error for EuvError {
    /// Returns the lower-level source of this error, if any.
    ///
    /// # Returns
    ///
    /// - `Option<&(dyn std::error::Error + 'static)>` - The underlying error source.
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match self {
            EuvError::Io { error, .. } => Some(error),
            EuvError::IoPath { error, .. } => Some(error),
            EuvError::Utf8 { error, .. } => Some(error),
            EuvError::Watch(error) => Some(error),
            EuvError::Server(_) | EuvError::Message(_) => None,
        }
    }
}

/// Implements `From<notify::Error>` for `EuvError` to enable `?` operator conversion.
impl From<notify::Error> for EuvError {
    /// Converts a `notify::Error` into `EuvError::Watch`.
    ///
    /// # Arguments
    ///
    /// - `notify::Error` - The file watcher error to convert.
    ///
    /// # Returns
    ///
    /// - `EuvError` - The converted `Watch` variant.
    fn from(error: notify::Error) -> Self {
        EuvError::Watch(error)
    }
}