Struct qcgpu::gates::Gate [] [src]

pub struct Gate {
    pub a: Complex32,
    pub b: Complex32,
    pub c: Complex32,
    pub d: Complex32,
}

Representation of a gate

Gate {
   a: Complex32::new(0.0, 0.0), b: Complex32::new(1.0, 0.0),
   c: Complex32::new(1.0, 0.0), d: Complex32::new(0.0, 0.0)
};

Fields

Trait Implementations

impl Debug for Gate
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Gate
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Gate
[src]

impl Display for Gate
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Gate

impl Sync for Gate