Files
empidee/src/commands/connection_settings/binary_limit.rs

13 lines
335 B
Rust

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;
}