Enum tiny_skia::pipeline::Stage

source ·
pub enum Stage {
Show 62 variants MoveSourceToDestination = 0, MoveDestinationToSource = 1, Clamp0 = 2, ClampA = 3, Premultiply = 4, UniformColor = 5, SeedShader = 6, LoadDestination = 7, Store = 8, LoadDestinationU8 = 9, StoreU8 = 10, Gather = 11, LoadMaskU8 = 12, MaskU8 = 13, ScaleU8 = 14, LerpU8 = 15, Scale1Float = 16, Lerp1Float = 17, DestinationAtop = 18, DestinationIn = 19, DestinationOut = 20, DestinationOver = 21, SourceAtop = 22, SourceIn = 23, SourceOut = 24, SourceOver = 25, Clear = 26, Modulate = 27, Multiply = 28, Plus = 29, Screen = 30, Xor = 31, ColorBurn = 32, ColorDodge = 33, Darken = 34, Difference = 35, Exclusion = 36, HardLight = 37, Lighten = 38, Overlay = 39, SoftLight = 40, Hue = 41, Saturation = 42, Color = 43, Luminosity = 44, SourceOverRgba = 45, Transform = 46, Reflect = 47, Repeat = 48, Bilinear = 49, Bicubic = 50, PadX1 = 51, ReflectX1 = 52, RepeatX1 = 53, Gradient = 54, EvenlySpaced2StopGradient = 55, XYToRadius = 56, XYTo2PtConicalFocalOnCircle = 57, XYTo2PtConicalWellBehaved = 58, XYTo2PtConicalGreater = 59, Mask2PtConicalDegenerates = 60, ApplyVectorMask = 61,
}

Variants§

§

MoveSourceToDestination = 0

§

MoveDestinationToSource = 1

§

Clamp0 = 2

§

ClampA = 3

§

Premultiply = 4

§

UniformColor = 5

§

SeedShader = 6

§

LoadDestination = 7

§

Store = 8

§

LoadDestinationU8 = 9

§

StoreU8 = 10

§

Gather = 11

§

LoadMaskU8 = 12

§

MaskU8 = 13

§

ScaleU8 = 14

§

LerpU8 = 15

§

Scale1Float = 16

§

Lerp1Float = 17

§

DestinationAtop = 18

§

DestinationIn = 19

§

DestinationOut = 20

§

DestinationOver = 21

§

SourceAtop = 22

§

SourceIn = 23

§

SourceOut = 24

§

SourceOver = 25

§

Clear = 26

§

Modulate = 27

§

Multiply = 28

§

Plus = 29

§

Screen = 30

§

Xor = 31

§

ColorBurn = 32

§

ColorDodge = 33

§

Darken = 34

§

Difference = 35

§

Exclusion = 36

§

HardLight = 37

§

Lighten = 38

§

Overlay = 39

§

SoftLight = 40

§

Hue = 41

§

Saturation = 42

§

Color = 43

§

Luminosity = 44

§

SourceOverRgba = 45

§

Transform = 46

§

Reflect = 47

§

Repeat = 48

§

Bilinear = 49

§

Bicubic = 50

§

PadX1 = 51

§

ReflectX1 = 52

§

RepeatX1 = 53

§

Gradient = 54

§

EvenlySpaced2StopGradient = 55

§

XYToRadius = 56

§

XYTo2PtConicalFocalOnCircle = 57

§

XYTo2PtConicalWellBehaved = 58

§

XYTo2PtConicalGreater = 59

§

Mask2PtConicalDegenerates = 60

§

ApplyVectorMask = 61

Trait Implementations§

source§

impl Clone for Stage

source§

fn clone(&self) -> Stage

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 Stage

source§

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

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

impl Copy for Stage

Auto Trait Implementations§

§

impl Freeze for Stage

§

impl RefUnwindSafe for Stage

§

impl Send for Stage

§

impl Sync for Stage

§

impl Unpin for Stage

§

impl UnwindSafe for Stage

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, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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.