cc_talk_host 0.0.1

ccTalk host crate based on cc_talk_core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use cc_talk_core::cc_talk::Category;

use super::command::CommandSet;

pub mod core_commands;

/// ccTalk core command set.
pub struct CoreCommandSet;

impl CommandSet for CoreCommandSet {
    const NAME: &'static str = "Core";

    /// The core command set is compatible with all categories.
    fn is_compatible_with(_: Category) -> bool {
        true
    }
}