[][src]Struct qip::macros::RegisterDataWrapper

pub struct RegisterDataWrapper {
    pub indices: Vec<u64>,
    pub n: u64,
    pub index: usize,
}

A struct which wraps the metadata for a Register, this is so that expressions which reference the register can still be used inside the program! macro.

Fields

indices: Vec<u64>

Indices of the register

n: u64

Number of qubits in the register

index: usize

Index of the register as arg to program!

Methods

impl RegisterDataWrapper[src]

pub fn new(r: &Register, index: usize) -> Self[src]

Make a new RegisterDataWrapper for a register (with given index)

pub fn n(&self) -> u64[src]

Number of qubits in the register

Trait Implementations

impl Debug for RegisterDataWrapper[src]

Auto Trait Implementations

Blanket Implementations

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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