Skip to main content

LoadStream

Trait LoadStream 

Source
pub trait LoadStream: Read
where Self: Static,
{ }
Expand description

Alias for a 'static Read stream.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<S> LoadStream for S
where S: Static + Read,