Skip to main content

QueryParameterType

Trait QueryParameterType 

Source
pub trait QueryParameterType<'a> {
    // Required method
    fn get(entities: &'a Entities) -> Self
       where Self: Sized;
}

Required Methods§

Source

fn get(entities: &'a Entities) -> Self
where Self: Sized,

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<'a, T> QueryParameterType<'a> for FnQuery<'a, T>