pub trait QueryExt
All checks were successful
buildbot/cargo fmt (1.72) Build done.
buildbot/cargo doc (1.72) Build done.
buildbot/cargo clippy (1.72) Build done.
buildbot/cargo clippy (1.65) Build done.
buildbot/cargo test (1.65) Build done.

This commit is contained in:
AF 2024-08-30 21:18:54 +00:00
parent 68527dac32
commit 2034df5379
Signed by: alisa
SSH Key Fingerprint: SHA256:vNY4pdIZvO1FYJKHROkdHLtvyopizvZVAEwg9AF6h04

View File

@ -108,7 +108,7 @@ where
}
}
trait QueryExt: Query {
pub trait QueryExt: Query {
fn start<M>(self) -> StartQuery<Self, M> {
StartQuery(self, PhantomData)
}