tangled
alpha
login
or
join now
buttplug.io
/
buttplug
20
fork
atom
Buttplug sex toy control library
20
fork
atom
overview
issues
pulls
pipelines
chore: Fix 2024 edition issues in intiface_engine
qdot.tngl.sh
8 months ago
d2e8513b
d6068ef1
+2
-2
1 changed file
expand all
collapse all
unified
split
crates
intiface_engine
src
remote_server.rs
+2
-2
crates/intiface_engine/src/remote_server.rs
···
238
238
}
239
239
}
240
240
241
241
-
pub fn event_stream(&self) -> impl Stream<Item = ButtplugRemoteServerEvent> {
241
241
+
pub fn event_stream(&self) -> impl Stream<Item = ButtplugRemoteServerEvent> + use<> {
242
242
convert_broadcast_receiver_to_stream(self.event_sender.subscribe())
243
243
}
244
244
245
245
pub fn start<ConnectorType>(
246
246
&self,
247
247
mut connector: ConnectorType,
248
248
-
) -> impl Future<Output = Result<(), ButtplugServerConnectorError>>
248
248
+
) -> impl Future<Output = Result<(), ButtplugServerConnectorError>> + use<ConnectorType>
249
249
where
250
250
ConnectorType:
251
251
ButtplugConnector<ButtplugServerMessageVariant, ButtplugClientMessageVariant> + 'static,