Trait qmc::sse::qmc_traits::op_container::OpNode[][src]

pub trait OpNode<O: Op> {
    fn get_op(&self) -> O;
fn get_op_ref(&self) -> &O;
fn get_op_mut(&mut self) -> &mut O; }
Expand description

A node for a loop updater to contain ops.

Required methods

Get the contained up

Get a reference to the contained op

Get a mutable reference to the contained op.

Implementors