Trait sp_core::TryCollect

source ·
pub trait TryCollect<C> {
    type Error;

    fn try_collect(self) -> Result<C, Self::Error>;
}
Expand description

Try and collect into a collection C.

Required Associated Types§

The error type that gets returned when a collection can’t be made from self.

Required Methods§

Consume self and try to collect the results into C.

This is useful in preventing the undesirable .collect().try_into() call chain on collections that need to be converted into a bounded type (e.g. BoundedVec).

Implementors§