Enum multipart::server::ReadEntryResult [] [src]

pub enum ReadEntryResult<M: ReadEntry, Entry = MultipartField<M>> {
    Entry(Entry),
    End(M),
    Error(M, Error),
}

Result type returned by Multipart::into_entry() and MultipartField::next_entry().

Variants

The next entry was found.

No more entries could be read.

An error occurred.

Methods

impl<M: ReadEntry, Entry> ReadEntryResult<M, Entry>
[src]