[][src]Trait mgf::ConstrainedSet

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

fn get(&self, _: Index) -> (Constrained, Inspected)

fn set(&mut self, _: Index, _: Constrained)

Loading content...

Implementors

Loading content...