Trait table::value::FromValueMut[][src]

pub trait FromValueMut<'a>: Sized {
    fn from_value_mut(value: &'a mut Value) -> Option<Self>;
}

Attempt to unwrap or parse Self from a mutably referenced Value.

Required Methods

Attempts to perform the conversion, returning None if the given value can not be used to produce Self.

Implementations on Foreign Types

impl<'a> FromValueMut<'a> for &'a mut String
[src]

impl<'a> FromValueMut<'a> for &'a mut Vec<Value>
[src]

Implementors