Skip to main content

TechnologySignature

Enum TechnologySignature 

Source
#[non_exhaustive]
#[repr(u32)]
pub enum TechnologySignature {
Show 26 variants DigitalCamera = 1_684_234_605, FilmScanner = 1_718_838_126, ReflectiveScanner = 1_920_164_718, InkJetPrinter = 1_768_580_468, ThermalWaxPrinter = 1_953_980_792, ElectrophotographicPrinter = 1_701_865_583, ElectrostaticPrinter = 1_702_065_249, DyeSublimationPrinter = 1_685_288_290, PhotographicPaperPrinter = 1_919_969_391, FilmWriter = 1_718_645_358, VideoMonitor = 1_986_618_477, VideoCamera = 1_986_618_467, ProjectionTelevision = 1_886_024_822, CRTDisplay = 1_129_468_960, PMDisplay = 1_347_240_992, AMDisplay = 1_095_582_752, PhotoCD = 1_263_551_300, PhotoImageSetter = 1_768_777_587, Gravure = 1_735_549_302, OffsetLithography = 1_868_981_875, Silkscreen = 1_936_288_875, Flexography = 1_718_379_896, MotionPictureFilmScanner = 1_836_082_803, MotionPictureFilmRecorder = 1_836_082_802, DigitalMotionPictureCamera = 1_684_893_795, DigitalCinemaProjector = 1_684_236_912,
}

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

DigitalCamera = 1_684_234_605

‘dcam’

§

FilmScanner = 1_718_838_126

‘fscn’

§

ReflectiveScanner = 1_920_164_718

‘rscn’

§

InkJetPrinter = 1_768_580_468

‘ijet’

§

ThermalWaxPrinter = 1_953_980_792

‘twax’

§

ElectrophotographicPrinter = 1_701_865_583

‘epho’

§

ElectrostaticPrinter = 1_702_065_249

‘esta’

§

DyeSublimationPrinter = 1_685_288_290

‘dsub’

§

PhotographicPaperPrinter = 1_919_969_391

‘rpho’

§

FilmWriter = 1_718_645_358

‘fprn’

§

VideoMonitor = 1_986_618_477

‘vidm’

§

VideoCamera = 1_986_618_467

‘vidc’

§

ProjectionTelevision = 1_886_024_822

‘pjtv’

§

CRTDisplay = 1_129_468_960

’CRT ’

§

PMDisplay = 1_347_240_992

’PMD ’

§

AMDisplay = 1_095_582_752

’AMD ’

§

PhotoCD = 1_263_551_300

‘KPCD’

§

PhotoImageSetter = 1_768_777_587

‘imgs’

§

Gravure = 1_735_549_302

‘grav’

§

OffsetLithography = 1_868_981_875

‘offs’

§

Silkscreen = 1_936_288_875

‘silk’

§

Flexography = 1_718_379_896

‘flex’

§

MotionPictureFilmScanner = 1_836_082_803

‘mpfs’

§

MotionPictureFilmRecorder = 1_836_082_802

‘mpfr’

§

DigitalMotionPictureCamera = 1_684_893_795

‘dmpc’

§

DigitalCinemaProjector = 1_684_236_912

‘dcpj’

Trait Implementations§

Source§

impl Clone for TechnologySignature

Source§

fn clone(&self) -> TechnologySignature

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for TechnologySignature

Source§

impl Debug for TechnologySignature

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for TechnologySignature

Source§

impl Hash for TechnologySignature

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for TechnologySignature

Source§

fn eq(&self, other: &TechnologySignature) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for TechnologySignature

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.