Buttplug sex toy control library
at master 491 B view raw
1// Buttplug Rust Source Code File - See https://buttplug.io for more info. 2// 3// Copyright 2016-2024 Nonpolynomial Labs LLC. All rights reserved. 4// 5// Licensed under the BSD 3-Clause license. See LICENSE file in the project root 6// for full license information. 7 8use crate::device::protocol::{ProtocolHandler, generic_protocol_setup}; 9 10generic_protocol_setup!(RawProtocol, "raw"); 11 12#[derive(Default)] 13pub struct RawProtocol {} 14 15impl ProtocolHandler for RawProtocol { 16} 17 18// TODO Write tests