[][src]Trait structural::field::errors::IntoFieldErr

pub trait IntoFieldErr<T>: IsFieldErr {
    fn into_field_err(self) -> T
    where
        T: IsFieldErr
; }

A specialized conversion trait,to convert field accessor error types to other field accessor error types.

Required methods

fn into_field_err(self) -> T where
    T: IsFieldErr

Performs the conversion

Loading content...

Implementors

impl IntoFieldErr<FailedAccess> for InfallibleAccess[src]

impl<T> IntoFieldErr<T> for T where
    T: IsFieldErr
[src]

Loading content...