pub trait Access: AccessNext + Sized {
// Provided method
fn access<'a, I: IntoIterator<Item = &'a Query<'a>>>(
&self,
queries: I,
) -> Option<&Self> { ... }
}Expand description
An easily implementable trait to acess a list of queries
Provided Methods§
fn access<'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.
Implementations on Foreign Types§
impl Access for Value
Available on crate feature
json only.