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

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

A node for a loop updater to contain ops.

Required methods

pub fn get_op(&self) -> O[src]

Get the contained up

pub fn get_op_ref(&self) -> &O[src]

Get a reference to the contained op

pub fn get_op_mut(&mut self) -> &mut O[src]

Get a mutable reference to the contained op.

Loading content...

Implementors

impl<O: Op + Clone> OpNode<O> for FastOpNodeTemplate<O>[src]

Loading content...