[][src]Struct qip::qubits::Qubit

pub struct Qubit {
    pub indices: Vec<u64>,
    pub parent: Option<Parent>,
    pub id: u64,
}

A qubit object, possible representing multiple physical qubit indices.

Fields

indices: Vec<u64>parent: Option<Parent>id: u64

Methods

impl Qubit[src]

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

Create a handle for feeding values.

pub fn merge_with_modifier(
    id: u64,
    qubits: Vec<Qubit>,
    modifier: Option<StateModifier>
) -> Qubit
[src]

Merge qubits to for a new qubit object.

pub fn split(
    ida: u64,
    idb: u64,
    q: Qubit,
    indices: Vec<u64>
) -> Result<(Qubit, Qubit), &'static str>
[src]

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

pub fn split_absolute(
    ida: u64,
    idb: u64,
    q: Qubit,
    selected_indices: Vec<u64>
) -> Result<(Qubit, Qubit), &'static str>
[src]

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

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

Get number of qubits in this Qubit object

Trait Implementations

impl PartialEq<Qubit> for Qubit[src]

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

This method tests for !=.

impl PartialOrd<Qubit> for Qubit[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 Eq for Qubit[src]

impl Ord for Qubit[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 Debug for Qubit[src]

Auto Trait Implementations

impl Unpin for Qubit

impl !Sync for Qubit

impl !Send for Qubit

impl !RefUnwindSafe for Qubit

impl !UnwindSafe for Qubit

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

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

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