Skip to main content

UploadReader

Trait UploadReader 

Source
pub trait UploadReader:
    AsyncRead
    + Send
    + 'static { }
Expand description

Async reader accepted by upload methods.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<T> UploadReader for T
where T: AsyncRead + Send + 'static,