Enum lcms2_sys::ffi::PlatformSignature
source · #[non_exhaustive]#[repr(u32)]pub enum PlatformSignature {
Macintosh = 1_095_782_476,
Microsoft = 1_297_303_124,
Solaris = 1_398_099_543,
SGI = 1_397_180_704,
Taligent = 1_413_959_252,
Unices = 711_879_032,
}
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.
Macintosh = 1_095_782_476
‘APPL’
Microsoft = 1_297_303_124
‘MSFT’
Solaris = 1_398_099_543
‘SUNW’
SGI = 1_397_180_704
’SGI ’
Taligent = 1_413_959_252
‘TGNT’
Unices = 711_879_032
‘*nix’ // From argyll – Not official
Trait Implementations§
source§impl Clone for PlatformSignature
impl Clone for PlatformSignature
source§fn clone(&self) -> PlatformSignature
fn clone(&self) -> PlatformSignature
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PlatformSignature
impl Debug for PlatformSignature
source§impl Hash for PlatformSignature
impl Hash for PlatformSignature
source§impl PartialEq for PlatformSignature
impl PartialEq for PlatformSignature
source§fn eq(&self, other: &PlatformSignature) -> bool
fn eq(&self, other: &PlatformSignature) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for PlatformSignature
impl Eq for PlatformSignature
impl StructuralPartialEq for PlatformSignature
Auto Trait Implementations§
impl RefUnwindSafe for PlatformSignature
impl Send for PlatformSignature
impl Sync for PlatformSignature
impl Unpin for PlatformSignature
impl UnwindSafe for PlatformSignature
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more