pub trait IgnoreNotMappedErr {
    fn ignore(self) -> PagingResult;
}
Expand description

The PagingError::NotMapped can be ignored.

Required Methods

If self is Err(PagingError::NotMapped, ignores the error and returns Ok(()), otherwise remain unchanged.

Implementors