useserde::{Deserialize, Serialize};#[derive(Clone, Default, Deserialize, Serialize)]pubstructQueueStatus{/// Did the queue command succeed?
pubsuccess:bool,
/// Number of items added to the queue
pubadded:usize,
/// Total number of items not added to the queue
pubexcluded:usize,
}