pub trait FrozenOpState:
Debug
+ DynClone
+ Send
+ 'static {
// Required method
fn unfreeze(&self) -> Box<dyn OpState>;
}
Required Methods§
Trait Implementations§
Source§impl<'clone> Clone for Box<dyn FrozenOpState + 'clone>
impl<'clone> Clone for Box<dyn FrozenOpState + 'clone>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more