famiq 0.3.1

Experimental GUI library, powered by Bevy engine.
Documentation
use thiserror::Error;

#[derive(Debug, Error, PartialEq)]
pub enum StylesFileError {
    #[error("Failed to read the file")]
    ReadStylesFileFail,

    #[error("Styles file does not exist")]
    StylesFileDoesNotExist,

    #[error("Failed to convert styles to struct")]
    ReadStylesFromFileToStructFail,
}

#[derive(Debug, Error, PartialEq)]
pub enum ToRValErr {
    #[error("Unsupported type for convert into RVal")]
    ConvertToRValFail,

    #[error("Unsupported type")]
    UnsupportedType
}