Struct wildland_dfs::DummyIStream
source · pub struct DummyIStream { /* private fields */ }
Implementations§
Trait Implementations§
source§impl Clone for DummyIStream
impl Clone for DummyIStream
source§fn clone(&self) -> DummyIStream
fn clone(&self) -> DummyIStream
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl IStream for DummyIStream
impl IStream for DummyIStream
source§fn read(&mut self, bytes_count: usize) -> Result<Vec<u8, Global>, StreamErr>
fn read(&mut self, bytes_count: usize) -> Result<Vec<u8, Global>, StreamErr>
Reads at most number of bytes specified by the
bytes_count
argument.
Empty vector in IStreamResult::Ok(..)
means end of stream.source§fn total_size(&self) -> usize
fn total_size(&self) -> usize
Provides total size of a Stream in bytes
If
None
returned, operation progress can not be trackedAuto Trait Implementations§
impl RefUnwindSafe for DummyIStream
impl Send for DummyIStream
impl Sync for DummyIStream
impl Unpin for DummyIStream
impl UnwindSafe for DummyIStream
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more