pub trait FromPolyQueryable {
    // Required method
    fn from_poly(v: PolyQueryable) -> Self;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§

source§

impl FromPolyQueryable for PolyQueryable

source§

impl<Q: 'static, A: 'static> FromPolyQueryable for Queryable<Q, A>