[][src]Trait packs::ExtractMut

pub trait ExtractMut<T>: Sized {
    pub fn extract_mut(from: &mut Value<T>) -> Option<&mut Self>;

    pub fn extract_opt_mut(from: &mut Value<T>) -> Option<Option<&mut Self>> { ... }
}

An Extract variant for mutably borrowed values.

Required methods

pub fn extract_mut(from: &mut Value<T>) -> Option<&mut Self>[src]

Loading content...

Provided methods

pub fn extract_opt_mut(from: &mut Value<T>) -> Option<Option<&mut Self>>[src]

Loading content...

Implementations on Foreign Types

impl<T> ExtractMut<T> for i64[src]

impl<T> ExtractMut<T> for f64[src]

impl<T> ExtractMut<T> for bool[src]

impl<T> ExtractMut<T> for String[src]

impl<T> ExtractMut<T> for Vec<Value<T>>[src]

Loading content...

Implementors

impl<T> ExtractMut<T> for Bytes[src]

impl<T> ExtractMut<T> for Dictionary<T>[src]

Loading content...