pub trait EntropicEnsemble<E>: Entropic {
// Required methods
fn ensemble(&self) -> &E;
unsafe fn ensemble_mut(&mut self) -> &mut E;
}
Expand description
§trait to request a reference to the current (state of the) ensemble
- See also EntropicEEH
Required Methods§
Sourceunsafe fn ensemble_mut(&mut self) -> &mut E
unsafe fn ensemble_mut(&mut self) -> &mut E
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.