diff options
Diffstat (limited to 'src/ops/traits.rs')
| -rw-r--r-- | src/ops/traits.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ops/traits.rs b/src/ops/traits.rs index d710264..e445687 100644 --- a/src/ops/traits.rs +++ b/src/ops/traits.rs @@ -248,6 +248,20 @@ impl<'o, O: Operation<'o>> Reply<'o, O> { O::force_direct_io(self) } + pub fn non_seekable(&mut self) + where + O: ReplyOpen<'o>, + { + O::non_seekable(self) + } + + pub fn is_stream(&mut self) + where + O: ReplyOpen<'o>, + { + O::is_stream(self) + } + pub fn not_found_for(self, ttl: Ttl) -> Done<'o> where O: ReplyFound<'o>, |
