[][src]Trait futures_signals_structs::AsMutableStruct

pub trait AsMutableStruct {
    type MutableStructType: MutableStruct;
    fn as_mutable_struct(&self) -> Self::MutableStructType;
}

Associated Types

Loading content...

Required methods

fn as_mutable_struct(&self) -> Self::MutableStructType

Returns a Mutable version of this struct. Note that mutable in this context does not mean mut in the Rust sense. Instead it means that every field on the returned struct will be an instance of Mutable as provided in the futures-signals crate. This means that any changes to the struct can be tracked using signals.

Loading content...

Implementations on Foreign Types

impl<T> AsMutableStruct for Vec<T> where
    T: Clone
[src]

Loading content...

Implementors

Loading content...