MetaQuery

Derive Macro MetaQuery 

Source
#[derive(MetaQuery)]
Expand description

Fetch individual items from a MetaTuple.

§Syntax

#[derive(MetaQuery)]
pub struct MyQuery<'t> {
    int: &'t i32,
    string: &'t String,
}

§Semantics

Requires a generic lifetime, all generic types will be added + 'static bound.