Files
empidee/src/commands/connection_settings/binary_limit.rs
T
oysteikt b0b4134829
Build and test / check (push) Failing after 1m2s
Build and test / build (push) Successful in 1m8s
Build and test / test (push) Successful in 2m23s
Build and test / docs (push) Successful in 1m24s
commands: split Command trait into req + res parts
2025-12-08 00:07:37 +09:00

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