#[non_exhaustive]pub struct GateOp<'a> {
pub gate_type: GateOpType<'a>,
pub control_qubits: u8,
pub adjoint: bool,
pub power: u8,
}Expand description
Quantum gate operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.gate_type: GateOpType<'a>The type of gate.
control_qubits: u8The number of control qubits for gate.
adjoint: boolWhether to apply the adjoint of the named gate.
power: u8A number of times to apply this gate in sequence.
Implementations§
Source§impl<'a> GateOp<'a>
impl<'a> GateOp<'a>
Sourcepub fn num_qubits(&self) -> usize
pub fn num_qubits(&self) -> usize
Returns the number of qubits that the gate acts on.
Sourcepub fn num_params(&self) -> usize
pub fn num_params(&self) -> usize
Returns the number of floating point parameters that the gate takes as inputs.
Trait Implementations§
impl<'a> Copy for GateOp<'a>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for GateOp<'a>
impl<'a> !Send for GateOp<'a>
impl<'a> !Sync for GateOp<'a>
impl<'a> !UnwindSafe for GateOp<'a>
impl<'a> Freeze for GateOp<'a>
impl<'a> Unpin for GateOp<'a>
impl<'a> UnsafeUnpin for GateOp<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more