[][src]Struct dqcsim::common::converter::UnitaryConverter

pub struct UnitaryConverter<T> where
    T: MatrixConverter
{ /* fields omitted */ }

Converter implementation for regular unitary gate matrices.

Implementations

impl<T> UnitaryConverter<T> where
    T: MatrixConverter
[src]

pub fn new(
    converter: T,
    num_controls: Option<usize>,
    epsilon: f64,
    ignore_global_phase: bool
) -> Self
[src]

Trait Implementations

impl<T> Converter for UnitaryConverter<T> where
    T: MatrixConverter
[src]

type Input = (Matrix, Option<usize>)

The more generic detector input type = constructor output type.

type Output = T::Parameters

The more specific detector output type = constructor input type.

Auto Trait Implementations

impl<T> RefUnwindSafe for UnitaryConverter<T> where
    T: RefUnwindSafe

impl<T> Send for UnitaryConverter<T> where
    T: Send

impl<T> Sync for UnitaryConverter<T> where
    T: Sync

impl<T> Unpin for UnitaryConverter<T> where
    T: Unpin

impl<T> UnwindSafe for UnitaryConverter<T> where
    T: 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, 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>,