Skip to main content

VisualScriptBuiltinFuncBuiltinFunc

Enum VisualScriptBuiltinFuncBuiltinFunc 

Source
#[repr(u32)]
pub enum VisualScriptBuiltinFuncBuiltinFunc {
Show 64 variants MathSin = 0, MathCos = 1, MathTan = 2, MathSinh = 3, MathCosh = 4, MathTanh = 5, MathAsin = 6, MathAcos = 7, MathAtan = 8, MathAtan2 = 9, MathSqrt = 10, MathFmod = 11, MathFposmod = 12, MathFloor = 13, MathCeil = 14, MathRound = 15, MathAbs = 16, MathSign = 17, MathPow = 18, MathLog = 19, MathExp = 20, MathIsnan = 21, MathIsinf = 22, MathEase = 23, MathDecimals = 24, MathStepify = 25, MathLerp = 26, MathInverseLerp = 27, MathRangeLerp = 28, MathDectime = 29, MathRandomize = 30, MathRand = 31, MathRandf = 32, MathRandom = 33, MathSeed = 34, MathRandseed = 35, MathDeg2rad = 36, MathRad2deg = 37, MathLinear2db = 38, MathDb2linear = 39, MathPolar2cartesian = 40, MathCartesian2polar = 41, MathWrap = 42, MathWrapf = 43, LogicMax = 44, LogicMin = 45, LogicClamp = 46, LogicNearestPo2 = 47, ObjWeakref = 48, FuncFuncref = 49, TypeConvert = 50, TypeOf = 51, TypeExists = 52, TextChar = 53, TextStr = 54, TextPrint = 55, TextPrinterr = 56, TextPrintraw = 57, VarToStr = 58, StrToVar = 59, VarToBytes = 60, BytesToVar = 61, Colorn = 62, FuncMax = 63,
}

Variants§

§

MathSin = 0

§

MathCos = 1

§

MathTan = 2

§

MathSinh = 3

§

MathCosh = 4

§

MathTanh = 5

§

MathAsin = 6

§

MathAcos = 7

§

MathAtan = 8

§

MathAtan2 = 9

§

MathSqrt = 10

§

MathFmod = 11

§

MathFposmod = 12

§

MathFloor = 13

§

MathCeil = 14

§

MathRound = 15

§

MathAbs = 16

§

MathSign = 17

§

MathPow = 18

§

MathLog = 19

§

MathExp = 20

§

MathIsnan = 21

§

MathIsinf = 22

§

MathEase = 23

§

MathDecimals = 24

§

MathStepify = 25

§

MathLerp = 26

§

MathInverseLerp = 27

§

MathRangeLerp = 28

§

MathDectime = 29

§

MathRandomize = 30

§

MathRand = 31

§

MathRandf = 32

§

MathRandom = 33

§

MathSeed = 34

§

MathRandseed = 35

§

MathDeg2rad = 36

§

MathRad2deg = 37

§

MathLinear2db = 38

§

MathDb2linear = 39

§

MathPolar2cartesian = 40

§

MathCartesian2polar = 41

§

MathWrap = 42

§

MathWrapf = 43

§

LogicMax = 44

§

LogicMin = 45

§

LogicClamp = 46

§

LogicNearestPo2 = 47

§

ObjWeakref = 48

§

FuncFuncref = 49

§

TypeConvert = 50

§

TypeOf = 51

§

TypeExists = 52

§

TextChar = 53

§

TextStr = 54

§

TextPrint = 55

§

TextPrinterr = 56

§

TextPrintraw = 57

§

VarToStr = 58

§

StrToVar = 59

§

VarToBytes = 60

§

BytesToVar = 61

§

Colorn = 62

§

FuncMax = 63

Trait Implementations§

Source§

impl Clone for VisualScriptBuiltinFuncBuiltinFunc

Source§

fn clone(&self) -> VisualScriptBuiltinFuncBuiltinFunc

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 VisualScriptBuiltinFuncBuiltinFunc

Source§

impl Debug for VisualScriptBuiltinFuncBuiltinFunc

Source§

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

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

impl Eq for VisualScriptBuiltinFuncBuiltinFunc

Source§

impl Hash for VisualScriptBuiltinFuncBuiltinFunc

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 VisualScriptBuiltinFuncBuiltinFunc

Source§

fn eq(&self, other: &VisualScriptBuiltinFuncBuiltinFunc) -> 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 VisualScriptBuiltinFuncBuiltinFunc

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.