caesura 0.30.2

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

/// Options for the [`QueueRemoveCommand`]
#[derive(Options, Clone, Debug, Deserialize, Serialize)]
pub struct QueueRemoveArgs {
    /// A torrent hash
    #[arg(value_name = "HASH")]
    pub queue_rm_hash: String,
}

impl OptionsContract for QueueRemoveArgs {
    type Partial = QueueRemoveArgsPartial;

    fn validate(&self, validator: &mut OptionsValidator) {
        if let Err(error) = Hash::<20>::from_string(&self.queue_rm_hash) {
            validator.push(OptionIssue::hash_invalid(
                "queue_rm_hash",
                &self.queue_rm_hash,
                &error.to_string(),
            ));
        }
    }
}

impl Display for QueueRemoveArgs {
    fn fmt(&self, formatter: &mut Formatter<'_>) -> FmtResult {
        let output = if let Ok(yaml) = yaml_to_string(self) {
            yaml
        } else {
            format!("{self:?}")
        };
        write!(formatter, "{output}")
    }
}