caesura 0.29.0

An all-in-one command line tool to transcode FLAC audio files and upload to gazelle based indexers/trackers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Deserialize, Serialize};

/// Result of a queue add operation.
#[derive(Clone, Default, Deserialize, Serialize)]
pub(crate) struct QueueStatus {
    /// Did the queue command succeed?
    pub success: bool,
    /// Number of items added to the queue
    pub added: usize,
    /// Total number of items not added to the queue
    pub excluded: usize,
}