Skip to main content

IQueryable

Trait IQueryable 

Source
pub trait IQueryable<T: IEntityType> {
    // Required method
    fn query(&self) -> QueryBuilder<T>;
}
Expand description

Trait representing a queryable data source.

Required Methods§

Source

fn query(&self) -> QueryBuilder<T>

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§