[][src]Struct qmc::sse::fast_ops::FastOpsTemplate

pub struct FastOpsTemplate<O: Op> { /* fields omitted */ }

A fast op container.

Implementations

impl<O: Op + Clone> FastOpsTemplate<O>[src]

pub fn new_from_ops<I: Iterator<Item = (usize, O)>>(
    nvars: usize,
    ps_and_ops: I
) -> Self
[src]

Make a new Manager from an interator of ops, and number of variables.

Trait Implementations

impl<O: Op + Clone> ClassicalLoopUpdater for FastOpsTemplate<O>[src]

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

impl<O: Op + Clone> ClusterUpdater for FastOpsTemplate<O>[src]

impl<O: Debug + Op> Debug for FastOpsTemplate<O>[src]

impl<O: Op + Clone> DiagonalUpdater for FastOpsTemplate<O>[src]

impl<O: Op + Clone> LoopUpdater for FastOpsTemplate<O>[src]

type Node = FastOpNodeTemplate<O>

The type used to contain the Op and handle movement around the worldlines.

impl<O: Op + Clone> OpContainer for FastOpsTemplate<O>[src]

type Op = O

The op object to manage.

impl<O: Op + Clone> OpContainerConstructor for FastOpsTemplate<O>[src]

Auto Trait Implementations

impl<O> RefUnwindSafe for FastOpsTemplate<O> where
    O: RefUnwindSafe

impl<O> Send for FastOpsTemplate<O> where
    O: Send

impl<O> Sync for FastOpsTemplate<O> where
    O: Sync

impl<O> Unpin for FastOpsTemplate<O> where
    O: Unpin

impl<O> UnwindSafe for FastOpsTemplate<O> where
    O: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,