Trait quil_rs::instruction::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

Object Safety§

This trait is not object safe.

Implementors§