eureka-mmanager 0.1.4

An Actix actor collection for downloading manga, chapters, covers from Mangadex
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use mangadex_api_types_rust::RelationshipType;
use uuid::Uuid;

#[derive(Debug, thiserror::Error, PartialEq, Eq)]
pub enum HistoryBaseError {
    #[error("Invalid Relationship Input {0}")]
    InvalidRelationship(RelationshipType),
    #[error("The value {0} already exists")]
    AlreadyExists(Uuid),
    #[error("The value {0} is not found")]
    NotFound(Uuid),
}