Enum multipart::server::save::SaveResult [] [src]

pub enum SaveResult<Success, Partial> {
    Full(Success),
    Partial(Partial, PartialReason),
    Error(Error),
}

The ternary result type used for the SaveBuilder<_> API.

Variants

The operation was a total success. Contained is the complete result.

The operation quit partway through. Included is the partial result along with the reason.

An error occurred at the start of the operation, before anything was done.

Methods

impl<S, P> SaveResult<S, P> where
    P: Into<S>, 
[src]

[src]

Convert self to Option<S>; there may still have been an error.

[src]

Map the Full or Partial values to a new type, retaining the reason in the Partial case.

[src]

Decompose self to (Option<S>, Option<io::Error>)

[src]

Map self to an io::Result, discarding the error in the Partial case.

[src]

Pessimistic version of into_result() which will return an error even for the Partial case.

Note: Possible Storage Leak

It's generally not a good idea to ignore the Partial case, as there may still be a partially written file on-disk. If you're not using a temporary directory (OS-managed or via TempDir) then partially written files will remain on-disk until explicitly removed which could result in excessive disk usage if not monitored closely.

Trait Implementations

impl<Success: Debug, Partial: Debug> Debug for SaveResult<Success, Partial>
[src]

[src]

Formats the value using the given formatter.