Trait mgf::ConstrainedSet[][src]

pub trait ConstrainedSet<Index, Constrained, Inspected> where
    Index: Copy
{ fn get(&self, _: Index) -> (Constrained, Inspected);
fn set(&mut self, _: Index, _: Constrained); }

A type that can be indexed and return some information. Constrained is information that can be returned and set, while Inspected is information that can only be returned.

Required Methods

Implementors