IntVariable

Trait IntVariable 

Source
pub trait IntVariable<VStore>: IntVariable_<VStore>
where VStore: Collection,
{ // Required method fn bclone(&self) -> Box<dyn IntVariable<VStore>>; }

Required Methods§

Source

fn bclone(&self) -> Box<dyn IntVariable<VStore>>

Implementors§

Source§

impl<VStore, R> IntVariable<VStore> for R
where R: IntVariable_<VStore> + Clone + 'static, VStore: Collection,