pub trait AccessOwned: AccessNextOwned {
// Provided method
fn access_owned<'a, I: IntoIterator<Item = &'a Query<'a>>>(
self,
queries: I,
) -> Option<Self> { ... }
}
Expand description
An easily implementable trait to acess a list of queries on an owned item
Provided Methods§
fn access_owned<'a, I: IntoIterator<Item = &'a Query<'a>>>( self, queries: I, ) -> Option<Self>
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.