[][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.

Methods

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, 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, 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 Ord for Register[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl PartialOrd<Register> for Register[src]

#[must_use] fn lt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use] fn le(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use] fn gt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use] fn ge(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq<Register> for Register[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Eq for Register[src]

impl Debug for Register[src]

Auto Trait Implementations

impl Unpin for Register

impl !Send for Register

impl !Sync for Register

impl !RefUnwindSafe for Register

impl !UnwindSafe for Register

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]