()
| 33 | |
| 34 | impl Default for ButtplugServerBuilder { |
| 35 | fn default() -> Self { |
| 36 | Self { |
| 37 | name: "Buttplug Server".to_owned(), |
| 38 | max_ping_time: None, |
| 39 | device_manager: Arc::new( |
| 40 | ServerDeviceManagerBuilder::new( |
| 41 | DeviceConfigurationManagerBuilder::default() |
| 42 | .finish() |
| 43 | .unwrap(), |
| 44 | ) |
| 45 | .finish() |
| 46 | .unwrap(), |
| 47 | ), |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | impl ButtplugServerBuilder { |