13 lines
335 B
Rust
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;
|
|
}
|