[][src]Struct qip::qubits::Register

pub struct Register {
    pub indices: Vec<u64>,
    // some fields omitted
}

A Register object, possible representing multiple physical qubit indices.

Fields

indices: Vec<u64>

The set of indices (qubits) represented by this Register.

Implementations

impl Register[src]

pub fn handle(&self) -> RegisterHandle[src]

Create a handle for feeding values.

pub fn merge_with_modifier(
    id: u64,
    registers: Vec<Register>,
    modifier: Option<StateModifier>
) -> Result<Register, CircuitError>
[src]

Merge Registers to form a new Register object.

pub fn split(
    ida: u64,
    idb: u64,
    r: Register,
    indices: &[u64]
) -> Result<(Register, Option<Register>), CircuitError>
[src]

Split the relative indices out of r into its own qubit, remaining live in second qubit.

pub fn split_absolute(
    ida: u64,
    idb: u64,
    r: Register,
    selected_indices: &[u64]
) -> Result<(Register, Option<Register>), CircuitError>
[src]

Split a Register in two, with one having the indices in selected_indices

pub fn make_measurement_handle(
    id: u64,
    r: Register
) -> (Register, MeasurementHandle)
[src]

Make a measurement handle and a Register which depends on that measurement.

pub fn add_deps(r: Register, deps: Vec<Rc<Register>>) -> Register[src]

Add additional Register dependencies to a given Register.

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

Get number of qubits in this Register object

Trait Implementations

impl Debug for Register[src]

impl Eq for Register[src]

impl Ord for Register[src]

impl PartialEq<Register> for Register[src]

impl PartialOrd<Register> for Register[src]

Auto Trait Implementations

impl !RefUnwindSafe for Register

impl !Send for Register

impl !Sync for Register

impl Unpin for Register

impl !UnwindSafe for Register

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