Trait signal_processing::ImpInvar
source · pub trait ImpInvar: System {
type Output: Sized;
// Required method
fn impinvar<FS, TOL>(
self,
sampling_frequency: FS,
tolerance: TOL
) -> Result<Self::Output, ImpInvarError>
where FS: Maybe<<Self::Domain as ComplexFloat>::Real>,
TOL: Maybe<<Self::Domain as ComplexFloat>::Real>;
}Required Associated Types§
Required Methods§
fn impinvar<FS, TOL>(
self,
sampling_frequency: FS,
tolerance: TOL
) -> Result<Self::Output, ImpInvarError>where
FS: Maybe<<Self::Domain as ComplexFloat>::Real>,
TOL: Maybe<<Self::Domain as ComplexFloat>::Real>,
Object Safety§
This trait is not object safe.