Skip to main content

ICScannerFeature

Trait ICScannerFeature 

Source
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§

Source

unsafe fn type_(self) -> ICScannerFeatureType

Scanner feature type.

Source

unsafe fn internalName(self) -> id

The internal name of this feature.

Source

unsafe fn humanReadableName(self) -> id

The human readable name of this feature.

Source

unsafe fn tooltip(self) -> id

Tooltip text describing the feature.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl ICScannerFeature for id

Source§

unsafe fn type_(self) -> ICScannerFeatureType

Source§

unsafe fn internalName(self) -> id

Source§

unsafe fn humanReadableName(self) -> id

Source§

unsafe fn tooltip(self) -> id

Implementors§