[][src]Struct qmc::sse::simple_ops::SimpleOpDiagonal

pub struct SimpleOpDiagonal { /* fields omitted */ }

A simple implementation of a diagonal op container.

Implementations

impl SimpleOpDiagonal[src]

pub fn debug_print<H>(&self, h: H) where
    H: Fn(&[usize], usize, &[bool], &[bool]) -> f64
[src]

Debug print the container.

pub fn set_pth(&mut self, p: usize, op: Option<SimpleOp>) -> Option<SimpleOp>[src]

Set the pth op.

Trait Implementations

impl ClassicalLoopUpdater for SimpleOpDiagonal[src]

impl Clone for SimpleOpDiagonal[src]

impl Debug for SimpleOpDiagonal[src]

impl DiagonalUpdater for SimpleOpDiagonal[src]

impl Factory<BondContainer<usize>> for SimpleOpDiagonal[src]

impl Factory<Vec<bool>> for SimpleOpDiagonal[src]

impl Factory<Vec<usize>> for SimpleOpDiagonal[src]

impl Into<SimpleOpDiagonal> for SimpleOpLooper[src]

impl Into<SimpleOpLooper> for SimpleOpDiagonal[src]

impl OpContainer for SimpleOpDiagonal[src]

type Op = SimpleOp

The op object to manage.

impl OpContainerConstructor for SimpleOpDiagonal[src]

Auto Trait Implementations

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>,