Skip to content
This repository was archived by the owner on May 29, 2026. It is now read-only.

Commit 784e331

Browse files
committed
remove inline
1 parent 4eae42c commit 784e331

7 files changed

Lines changed: 0 additions & 7 deletions

File tree

src/cached_source.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,6 @@ impl Stream for CachedSourceStream<'_> {
318318
}
319319

320320
impl ToStream for CachedSource {
321-
#[inline]
322321
fn to_stream<'a>(&'a self) -> Box<dyn Stream + 'a> {
323322
Box::new(CachedSourceStream::new(self))
324323
}

src/concat_source.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,6 @@ impl Stream for ConcatSourceStream<'_> {
485485
}
486486

487487
impl ToStream for ConcatSource {
488-
#[inline]
489488
fn to_stream<'a>(&'a self) -> Box<dyn Stream + 'a> {
490489
let children = self.optimized_children();
491490
// Fast path: delegate directly to the single child's stream,

src/original_source.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,6 @@ impl Stream for OriginalSourceStream<'_> {
272272
}
273273

274274
impl ToStream for OriginalSource {
275-
#[inline]
276275
fn to_stream<'a>(&'a self) -> Box<dyn Stream + 'a> {
277276
Box::new(OriginalSourceStream::new(self))
278277
}

src/raw_source.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,6 @@ impl Stream for RawBufferSourceStream<'_> {
306306
}
307307

308308
impl ToStream for RawBufferSource {
309-
#[inline]
310309
fn to_stream<'a>(&'a self) -> Box<dyn Stream + 'a> {
311310
Box::new(RawBufferSourceStream(self))
312311
}

src/replace_source.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,6 @@ impl Stream for ReplaceSourceStream<'_> {
889889
}
890890

891891
impl ToStream for ReplaceSource {
892-
#[inline]
893892
fn to_stream<'a>(&'a self) -> Box<dyn Stream + 'a> {
894893
Box::new(ReplaceSourceStream::new(self))
895894
}

src/source.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ impl Source for BoxSource {
206206
dyn_clone::clone_trait_object!(Source);
207207

208208
impl ToStream for BoxSource {
209-
#[inline]
210209
fn to_stream<'a>(&'a self) -> Box<dyn Stream + 'a> {
211210
self.as_ref().to_stream()
212211
}

tests/compat_source.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ impl Stream for CompatSourceStream<'_> {
8989
}
9090

9191
impl ToStream for CompatSource {
92-
#[inline]
9392
fn to_stream<'a>(&'a self) -> Box<dyn Stream + 'a> {
9493
Box::new(CompatSourceStream::new(self))
9594
}

0 commit comments

Comments
 (0)