Skip to main content

QueryableCollectionStatic

Trait QueryableCollectionStatic 

Source
pub trait QueryableCollectionStatic<Root, Item>
where Root: 'static, Item: 'static,
{ // Required method fn query(&self) -> CollectionQueryStatic<'_, Root, Item>; }
Expand description

Implemented for KpType<'static, Root, Vec<Item>> (e.g. from #[derive(Kp)]), enabling .query().

Required Methods§

Source

fn query(&self) -> CollectionQueryStatic<'_, Root, Item>

Implementations on Foreign Types§

Source§

impl<Root: 'static, Item: 'static> QueryableCollectionStatic<Root, Item> for KpType<'static, Root, Vec<Item>>

Source§

fn query(&self) -> CollectionQueryStatic<'_, Root, Item>

Implementors§