Skip to main content

QbAccessNested

Trait QbAccessNested 

Source
pub trait QbAccessNested {
    type Inner;

    // Required method
    fn _qb_access<R, F>(self, f: F) -> Vec<R>
       where F: FnMut(Self::Inner) -> Vec<R>;
}

Required Associated Types§

Required Methods§

Source

fn _qb_access<R, F>(self, f: F) -> Vec<R>
where F: FnMut(Self::Inner) -> Vec<R>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T> QbAccessNested for Vec<Vec<T>>

Source§

type Inner = T

Source§

fn _qb_access<R, F>(self, f: F) -> Vec<R>
where F: FnMut(T) -> Vec<R>,

Implementors§