Trait object_query::AccessNext[][src]

pub trait AccessNext<T = Self> {
    fn access_next<'a>(&self, query: &Query<'a>) -> Option<&T>;
}
Expand description

Describes how to access query

Required methods

fn access_next<'a>(&self, query: &Query<'a>) -> Option<&T>[src]

Implementations on Foreign Types

impl AccessNext<Value> for Value[src]

fn access_next<'a>(&self, query: &Query<'a>) -> Option<&Self>[src]

Implementors