pub trait HasValue<'a>: KnowsValue<'a> {
    // Required method
    fn value(self) -> Self::Value;
}

Required Methods§

source

fn value(self) -> Self::Value

Implementors§

source§

impl<'a, Parent, Value> HasValue<'a> for &'a Visitor<Parent, Value>

source§

impl<'a, Parent, Value> HasValue<'a> for &'a mut Visitor<Parent, Value>

source§

impl<'a, Parent, Value> HasValue<'a> for Visitor<Parent, Value>

source§

impl<'a, Value> HasValue<'a> for &'a RootVisitor<Value>

source§

impl<'a, Value> HasValue<'a> for &'a mut RootVisitor<Value>