IntoPauliMixture

Trait IntoPauliMixture 

Source
pub trait IntoPauliMixture {
    // Required method
    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§

Source

fn into_pauli_mixture(self) -> Vec<(f64, Vec<Pauli>)>

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

Implementations on Foreign Types§

Source§

impl IntoPauliMixture for Vec<(f64, Pauli)>

Source§

impl IntoPauliMixture for Vec<(f64, Vec<Pauli>)>

Source§

impl IntoPauliMixture for Vec<Pauli>

Implementors§