pub trait IntVariable<VStore>: IntVariable_<VStore>where
VStore: Collection,{
// Required method
fn bclone(&self) -> Box<dyn IntVariable<VStore>>;
}Required Methods§
fn bclone(&self) -> Box<dyn IntVariable<VStore>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".