pub trait ICScannerFeature: Sized {
// Required methods
unsafe fn type_(self) -> ICScannerFeatureType;
unsafe fn internalName(self) -> id;
unsafe fn humanReadableName(self) -> id;
unsafe fn tooltip(self) -> id;
}Expand description
ICScannerFeature class is an abstract base class used to describe a scanner feature.
Required Methods§
Sourceunsafe fn type_(self) -> ICScannerFeatureType
unsafe fn type_(self) -> ICScannerFeatureType
Scanner feature type.
Sourceunsafe fn internalName(self) -> id
unsafe fn internalName(self) -> id
The internal name of this feature.
Sourceunsafe fn humanReadableName(self) -> id
unsafe fn humanReadableName(self) -> id
The human readable name of this feature.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".