pub trait FrozenOpState: Debug + DynClone + Send + 'static {
    // Required method
    fn unfreeze(&self) -> Box<dyn OpState + 'static, Global>;
}

Required Methods§

fn unfreeze(&self) -> Box<dyn OpState + 'static, Global>

Trait Implementations§

§

impl<'clone> Clone for Box<dyn FrozenOpState + 'clone, Global>

§

fn clone(&self) -> Box<dyn FrozenOpState + 'clone, Global>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<'clone> Clone for Box<dyn FrozenOpState + Send + 'clone, Global>

§

fn clone(&self) -> Box<dyn FrozenOpState + Send + 'clone, Global>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<'clone> Clone for Box<dyn FrozenOpState + Sync + 'clone, Global>

§

fn clone(&self) -> Box<dyn FrozenOpState + Sync + 'clone, Global>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<'clone> Clone for Box<dyn FrozenOpState + Sync + Send + 'clone, Global>

§

fn clone(&self) -> Box<dyn FrozenOpState + Sync + Send + 'clone, Global>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Implementors§