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§
Required Methods§
fn signature(&self) -> Self::Signature<'_>
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.