[src]

Module std::result

Signaling success or failure states (Result type)

Result

Result is a type that represents either success (Ok) or failure (Err).

collect

Takes each element in the Iterator: if it is an Err, no further elements are taken, and the Err is returned. Should no Err occur, a vector containing the values of each Result is returned.

fold

Perform a fold operation over the result values from an iterator.

fold_

Perform a trivial fold operation over the result values from an iterator.