pub trait ValidationErrorExt {
    // Required method
    fn ignore<T: 'static + ?Sized>(self) -> Self;
}

Required Methods§

source

fn ignore<T: 'static + ?Sized>(self) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ValidationErrorExt for Result<(), ValidationError>

source§

fn ignore<T: 'static + ?Sized>(self) -> Self

Implementors§