#[repr(u8)]
pub enum PostscriptWindowsCharacterSet {
Show 20 variants Ansi = 1, Default = 2, Symbol = 3, Macintosh = 4, ShiftJis = 5, Hangul = 6, HangulJohab = 7, Gb2312 = 8, ChineseBig5 = 9, Greek = 10, Turkish = 11, Vietnamese = 12, Hebrew = 13, Arabic = 14, Baltic = 15, Bitstream = 16, Cyrillic = 17, Thai = 18, EasternEuropean = 19, Oem = 20,
}
Expand description

Corresponds to postscriptWindowsCharacterSet in PostScript Specific Data.

Variants§

§

Ansi = 1

ANSI character set.

§

Default = 2

Default character set.

§

Symbol = 3

Symbol character set.

§

Macintosh = 4

Macintosh character set.

§

ShiftJis = 5

Shift JIS character set.

§

Hangul = 6

Hangul character set.

§

HangulJohab = 7

Hangul (Johab) character set.

§

Gb2312 = 8

GB2312 character set.

§

ChineseBig5 = 9

Chinese BIG5 character set.

§

Greek = 10

Greek character set.

§

Turkish = 11

Turkish character set.

§

Vietnamese = 12

Vietnamese character set.

§

Hebrew = 13

Hebrew character set.

§

Arabic = 14

Arabic character set.

§

Baltic = 15

Baltic character set.

§

Bitstream = 16

Bitstream character set.

§

Cyrillic = 17

Cyrillic character set.

§

Thai = 18

Thai character set.

§

EasternEuropean = 19

Eastern European character set.

§

Oem = 20

OEM character set.

Trait Implementations§

source§

impl Clone for PostscriptWindowsCharacterSet

source§

fn clone(&self) -> PostscriptWindowsCharacterSet

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for PostscriptWindowsCharacterSet

source§

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

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

impl<'de> Deserialize<'de> for PostscriptWindowsCharacterSet

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for PostscriptWindowsCharacterSet

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for PostscriptWindowsCharacterSet

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Copy for PostscriptWindowsCharacterSet

source§

impl Eq for PostscriptWindowsCharacterSet

source§

impl StructuralPartialEq for PostscriptWindowsCharacterSet

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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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,

§

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>,

§

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>,

§

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.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,