pub trait IntoPauliMixture {
    fn into_pauli_mixture(self) -> Vec<(f64, Vec<Pauli>)>;
}
Expand description

A type that can be converted into a mixture of Pauli operators.

Required methods

Convert this value into a mixture of multi-qubit Pauli operators.

Implementations on Foreign Types

Implementors