pub trait AccessNextOwned<T = Self>: Sized {
// Required method
fn access_next_owned<'a>(self, query: &Query<'a>) -> Option<T>;
}
Expand description
Describes how to access query on an owned item
Required Methods§
fn access_next_owned<'a>(self, query: &Query<'a>) -> Option<T>
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.