Trait AccessNextOwned

Source
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§

Source

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.

Implementations on Foreign Types§

Source§

impl AccessNextOwned for Value

Source§

fn access_next_owned<'a>(self, query: &Query<'a>) -> Option<Self>

Implementors§