WIP change container type

This commit is contained in:
Dominik Werder
2024-11-30 11:44:49 +01:00
parent 927ef9ca55
commit aeefe566b7
5 changed files with 38 additions and 28 deletions
+1 -2
View File
@@ -87,8 +87,7 @@ where
let inp = Box::pin(inp) as BoxedBytesStream;
let frames = InMemoryFrameStream::new(inp, subq.inmem_bufcap());
let frames = frames.map_err(sitem_err2_from_string);
let frames = Box::pin(frames);
let stream = EventsFromFrames::<T>::new(frames, addr);
let stream = EventsFromFrames::<T, _>::new(frames, addr);
streams.push(Box::pin(stream) as _);
}
Ok(streams)