caesura 0.31.0

An all-in-one command line tool to transcode FLAC audio files and upload to gazelle based indexers/trackers
Documentation
use crate::prelude::*;

/// Actions that can fail in the queue module.
#[derive(Clone, Copy, Debug, Eq, PartialEq, ThisError)]
pub enum QueueAction {
    #[error("get queue item")]
    Get,
    #[error("get all queue items")]
    GetAll,
    #[error("set queue item")]
    Set,
    #[error("set many queue items")]
    SetMany,
    #[error("remove queue item")]
    Remove,
    #[error("read torrent")]
    ReadTorrent,
    #[error("fetch torrents from qBittorrent")]
    FetchTorrents,
    #[error("match path")]
    MatchPath,
}