pub trait SecureEntityExt<E: EntityTrait>: Sized {
// Required method
fn secure(self) -> SecureSelect<E, Unscoped>;
}Expand description
Extension trait to convert a regular SeaORM Select into a SecureSelect.
Required Methods§
Sourcefn secure(self) -> SecureSelect<E, Unscoped>
fn secure(self) -> SecureSelect<E, Unscoped>
Convert this select query into a secure (unscoped) select.
You must call .scope_with() before executing the query.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.