use crate::commands::{Command, empty_command_response, single_item_command_request}; pub struct BinaryLimit; single_item_command_request!(BinaryLimit, "binarylimit", u64); empty_command_response!(BinaryLimit); impl Command for BinaryLimit { type Request = BinaryLimitRequest; type Response = BinaryLimitResponse; }