Enum pdf_writer::types::PostScriptOp[][src]

pub enum PostScriptOp<'a> {
Show 44 variants Real(f32), Integer(i32), Abs, Add, Atan, Ceiling, Cos, Cvi, Cvr, Div, Exp, Floor, Idiv, Ln, Log, Mod, Mul, Neg, Round, Sin, Sqrt, Sub, Truncate, And, Bitshift, Eq, False, Ge, Gt, Le, Lt, Ne, Not, Or, True, Xor, If(&'a [Self]), IfElse(&'a [Self]&'a [Self]), Copy, Dup, Exch, Index, Pop, Roll,
}
Expand description

PostScript operators for use in Type 4 functions.

Variants

Real(f32)

Tuple Fields

0: f32

Push a real number.

Integer(i32)

Tuple Fields

0: i32

Push an integer number.

Abs

Absolute value. One number argument.

Add

Addition. Two number arguments.

Atan

Arc tangent. One number argument.

Ceiling

Round up to the nearest integer. One number argument.

Cos

Cosine. One number argument.

Cvi

Convert to integer. One real number argument.

Cvr

Convert to real. One integer argument.

Div

Divide. Two number arguments.

Exp

Raise the base to the exponent. Two number arguments.

Floor

Round down to the nearest integer. One number argument.

Idiv

Integer division. Two integer arguments.

Ln

Natural logarithm. One number argument.

Log

Logarithm base 10. One number argument.

Mod

Modulo. Two integer arguments.

Mul

Multiply. Two number arguments.

Neg

Negate. One number argument.

Round

Round to the nearest integer. One number argument.

Sin

Sine. One number argument.

Sqrt

Square root. One number argument.

Sub

Subtract. Two number arguments.

Truncate

Remove fractional part. One number argument.

And

Logical bitwise And. Two integer or boolean arguments.

Bitshift

Bitwise shift left. Negative shifts possible. Two integer arguments.

Eq

Equals. Any two arguments of the same type.

False

Constant false.

Ge

Greater than or equal. Two number arguments.

Gt

Greater than. Two number arguments.

Le

Less than or equal. Two number arguments.

Lt

Less than. Two number arguments.

Ne

Not equals. Any two arguments of the same type.

Not

Bitwise logical not. One integer or boolean argument.

Or

Bitwise logical or. Two integer or boolean arguments.

True

Constant true.

Xor

Bitwise logical exclusive or. Two integer or boolean arguments.

If(&'a [Self])

Tuple Fields

Conditional. Runs if boolean argument is true.

IfElse(&'a [Self]&'a [Self])

Tuple Fields

Conditional. Decides which branch to run depending on boolean argument.

Copy

Copy the top elements. One integer argument.

Dup

Duplicate the top element.

Exch

Exchange the two top elements.

Index

Duplicate any element. One integer argument.

Pop

Discard the top element.

Roll

Roll n elements up j times. Two integer arguments.

Implementations

Encode a slice of operations into a byte stream.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.