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