pub trait AccessNextMut<T = Self> {
// Required method
fn access_next_mut<'a>(&mut self, query: &Query<'a>) -> Option<&mut T>;
}
Expand description
Describes how to access query on a mutable item
pub trait AccessNextMut<T = Self> {
// Required method
fn access_next_mut<'a>(&mut self, query: &Query<'a>) -> Option<&mut T>;
}
Describes how to access query on a mutable item