quil_rs::instruction

Trait CalibrationSignature

Source
pub trait CalibrationSignature {
    type Signature<'a>
       where Self: 'a;

    // Required methods
    fn signature(&self) -> Self::Signature<'_>;
    fn has_signature(&self, signature: &Self::Signature<'_>) -> bool;
}

Required Associated Types§

Source

type Signature<'a> where Self: 'a

Required Methods§

Source

fn signature(&self) -> Self::Signature<'_>

Source

fn has_signature(&self, signature: &Self::Signature<'_>) -> bool

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§