Enum Numeric

Source
pub enum Numeric {
    I8(i8),
    I16(i16),
    I32(i32),
    I64(i64),
    U8(u8),
    U16(u16),
    U32(u32),
    U64(u64),
    F64(f64),
    F32(f32),
    ISize(isize),
    USize(usize),
}

Variants§

§

I8(i8)

§

I16(i16)

§

I32(i32)

§

I64(i64)

§

U8(u8)

§

U16(u16)

§

U32(u32)

§

U64(u64)

§

F64(f64)

§

F32(f32)

§

ISize(isize)

§

USize(usize)

Implementations§

Source§

impl Numeric

Source

pub fn to_float(&self) -> f64

Source

pub fn to_int(&self) -> i64

Source

pub fn is_float(&self) -> bool

Source

pub fn pow(self, exp: Numeric) -> Numeric

Source

pub fn min(self, other: Numeric) -> Numeric

Source

pub fn max(self, other: Numeric) -> Numeric

Trait Implementations§

Source§

impl Add for &Numeric

Source§

type Output = Numeric

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Numeric) -> <&Numeric as Add>::Output

Performs the + operation. Read more
Source§

impl Add for Numeric

Source§

type Output = Numeric

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Numeric) -> <Numeric as Add>::Output

Performs the + operation. Read more
Source§

impl Clone for Numeric

Source§

fn clone(&self) -> Numeric

Returns a duplicate 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 CoercionRules for Numeric

Source§

impl Debug for Numeric

Source§

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

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

impl Default for Numeric

Source§

fn default() -> Numeric

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Numeric

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<Numeric, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

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

impl Display for Numeric

Source§

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

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

impl Div for &Numeric

Source§

type Output = Numeric

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &Numeric) -> <&Numeric as Div>::Output

Performs the / operation. Read more
Source§

impl Div for Numeric

Source§

type Output = Numeric

The resulting type after applying the / operator.
Source§

fn div(self, rhs: Numeric) -> <Numeric as Div>::Output

Performs the / operation. Read more
Source§

impl From<&Numeric> for f32

Source§

fn from(value: &Numeric) -> f32

Converts to this type from the input type.
Source§

impl From<&Numeric> for f64

Source§

fn from(value: &Numeric) -> f64

Converts to this type from the input type.
Source§

impl From<&Numeric> for i16

Source§

fn from(value: &Numeric) -> i16

Converts to this type from the input type.
Source§

impl From<&Numeric> for i32

Source§

fn from(value: &Numeric) -> i32

Converts to this type from the input type.
Source§

impl From<&Numeric> for i64

Source§

fn from(value: &Numeric) -> i64

Converts to this type from the input type.
Source§

impl From<&Numeric> for i8

Source§

fn from(value: &Numeric) -> i8

Converts to this type from the input type.
Source§

impl From<&Numeric> for isize

Source§

fn from(value: &Numeric) -> isize

Converts to this type from the input type.
Source§

impl From<&Numeric> for u16

Source§

fn from(value: &Numeric) -> u16

Converts to this type from the input type.
Source§

impl From<&Numeric> for u32

Source§

fn from(value: &Numeric) -> u32

Converts to this type from the input type.
Source§

impl From<&Numeric> for u64

Source§

fn from(value: &Numeric) -> u64

Converts to this type from the input type.
Source§

impl From<&Numeric> for u8

Source§

fn from(value: &Numeric) -> u8

Converts to this type from the input type.
Source§

impl From<&Numeric> for usize

Source§

fn from(value: &Numeric) -> usize

Converts to this type from the input type.
Source§

impl From<&f32> for Numeric

Source§

fn from(value: &f32) -> Numeric

Converts to this type from the input type.
Source§

impl From<&f64> for Numeric

Source§

fn from(value: &f64) -> Numeric

Converts to this type from the input type.
Source§

impl From<&i16> for Numeric

Source§

fn from(value: &i16) -> Numeric

Converts to this type from the input type.
Source§

impl From<&i32> for Numeric

Source§

fn from(value: &i32) -> Numeric

Converts to this type from the input type.
Source§

impl From<&i64> for Numeric

Source§

fn from(value: &i64) -> Numeric

Converts to this type from the input type.
Source§

impl From<&i8> for Numeric

Source§

fn from(value: &i8) -> Numeric

Converts to this type from the input type.
Source§

impl From<&isize> for Numeric

Source§

fn from(value: &isize) -> Numeric

Converts to this type from the input type.
Source§

impl From<&u16> for Numeric

Source§

fn from(value: &u16) -> Numeric

Converts to this type from the input type.
Source§

impl From<&u32> for Numeric

Source§

fn from(value: &u32) -> Numeric

Converts to this type from the input type.
Source§

impl From<&u64> for Numeric

Source§

fn from(value: &u64) -> Numeric

Converts to this type from the input type.
Source§

impl From<&u8> for Numeric

Source§

fn from(value: &u8) -> Numeric

Converts to this type from the input type.
Source§

impl From<&usize> for Numeric

Source§

fn from(value: &usize) -> Numeric

Converts to this type from the input type.
Source§

impl From<Numeric> for ColorChannel

Source§

fn from(value: Numeric) -> ColorChannel

Converts to this type from the input type.
Source§

impl From<Numeric> for Rotation

Source§

fn from(value: Numeric) -> Rotation

Converts to this type from the input type.
Source§

impl From<Numeric> for f32

Source§

fn from(value: Numeric) -> f32

Converts to this type from the input type.
Source§

impl From<Numeric> for f64

Source§

fn from(value: Numeric) -> f64

Converts to this type from the input type.
Source§

impl From<Numeric> for i16

Source§

fn from(value: Numeric) -> i16

Converts to this type from the input type.
Source§

impl From<Numeric> for i32

Source§

fn from(value: Numeric) -> i32

Converts to this type from the input type.
Source§

impl From<Numeric> for i64

Source§

fn from(value: Numeric) -> i64

Converts to this type from the input type.
Source§

impl From<Numeric> for i8

Source§

fn from(value: Numeric) -> i8

Converts to this type from the input type.
Source§

impl From<Numeric> for isize

Source§

fn from(value: Numeric) -> isize

Converts to this type from the input type.
Source§

impl From<Numeric> for u16

Source§

fn from(value: Numeric) -> u16

Converts to this type from the input type.
Source§

impl From<Numeric> for u32

Source§

fn from(value: Numeric) -> u32

Converts to this type from the input type.
Source§

impl From<Numeric> for u64

Source§

fn from(value: Numeric) -> u64

Converts to this type from the input type.
Source§

impl From<Numeric> for u8

Source§

fn from(value: Numeric) -> u8

Converts to this type from the input type.
Source§

impl From<Numeric> for usize

Source§

fn from(value: Numeric) -> usize

Converts to this type from the input type.
Source§

impl From<Size> for Numeric

Source§

fn from(value: Size) -> Numeric

Converts to this type from the input type.
Source§

impl From<f32> for Numeric

Source§

fn from(value: f32) -> Numeric

Converts to this type from the input type.
Source§

impl From<f64> for Numeric

Source§

fn from(value: f64) -> Numeric

Converts to this type from the input type.
Source§

impl From<i16> for Numeric

Source§

fn from(value: i16) -> Numeric

Converts to this type from the input type.
Source§

impl From<i32> for Numeric

Source§

fn from(value: i32) -> Numeric

Converts to this type from the input type.
Source§

impl From<i64> for Numeric

Source§

fn from(value: i64) -> Numeric

Converts to this type from the input type.
Source§

impl From<i8> for Numeric

Source§

fn from(value: i8) -> Numeric

Converts to this type from the input type.
Source§

impl From<isize> for Numeric

Source§

fn from(value: isize) -> Numeric

Converts to this type from the input type.
Source§

impl From<u16> for Numeric

Source§

fn from(value: u16) -> Numeric

Converts to this type from the input type.
Source§

impl From<u32> for Numeric

Source§

fn from(value: u32) -> Numeric

Converts to this type from the input type.
Source§

impl From<u64> for Numeric

Source§

fn from(value: u64) -> Numeric

Converts to this type from the input type.
Source§

impl From<u8> for Numeric

Source§

fn from(value: u8) -> Numeric

Converts to this type from the input type.
Source§

impl From<usize> for Numeric

Source§

fn from(value: usize) -> Numeric

Converts to this type from the input type.
Source§

impl Hash for Numeric

Source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

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 HelperFunctions for Numeric

Source§

impl Interpolatable for Numeric

Source§

fn interpolate(&self, other: &Numeric, t: f64) -> Numeric

Source§

impl Mul for &Numeric

Source§

type Output = Numeric

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Numeric) -> <&Numeric as Mul>::Output

Performs the * operation. Read more
Source§

impl Mul for Numeric

Source§

type Output = Numeric

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Numeric) -> <Numeric as Mul>::Output

Performs the * operation. Read more
Source§

impl Neg for Numeric

Source§

type Output = Numeric

The resulting type after applying the - operator.
Source§

fn neg(self) -> <Numeric as Neg>::Output

Performs the unary - operation. Read more
Source§

impl PartialEq for Numeric

Source§

fn eq(&self, rhs: &Numeric) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · 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 PartialOrd for Numeric

Source§

fn partial_cmp(&self, rhs: &Numeric) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Reflectable for Numeric

Source§

fn get_import_path() -> String

The import path is the fully namespace-qualified path for a type, like std::vec::Vec This is distinct from type_id ONLY when the type has generics, like Vec, where the type_id is distinct across a Vec and a Vec. In both cases of Vec, the import_path will remain the same.
Source§

fn get_self_pascal_identifier() -> String

Source§

fn get_type_id() -> TypeId

Source§

fn parse_to_manifest( ctx: ParsingContext, ) -> (ParsingContext, Vec<PropertyDefinition>)

Source§

fn get_iterable_type_id() -> Option<TypeId>

Source§

impl Rem for &Numeric

Source§

type Output = Numeric

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &Numeric) -> <&Numeric as Rem>::Output

Performs the % operation. Read more
Source§

impl Rem for Numeric

Source§

type Output = Numeric

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: Numeric) -> <Numeric as Rem>::Output

Performs the % operation. Read more
Source§

impl Serialize for Numeric

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

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

impl Sub for &Numeric

Source§

type Output = Numeric

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Numeric) -> <&Numeric as Sub>::Output

Performs the - operation. Read more
Source§

impl Sub for Numeric

Source§

type Output = Numeric

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Numeric) -> <Numeric as Sub>::Output

Performs the - operation. Read more
Source§

impl ToPaxValue for Numeric

Source§

impl Copy for Numeric

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> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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<D> OwoColorize for D

Source§

fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>
where C: Color,

Set the foreground color generically Read more
Source§

fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>
where C: Color,

Set the background color generically. Read more
Source§

fn black(&self) -> FgColorDisplay<'_, Black, Self>

Change the foreground color to black
Source§

fn on_black(&self) -> BgColorDisplay<'_, Black, Self>

Change the background color to black
Source§

fn red(&self) -> FgColorDisplay<'_, Red, Self>

Change the foreground color to red
Source§

fn on_red(&self) -> BgColorDisplay<'_, Red, Self>

Change the background color to red
Source§

fn green(&self) -> FgColorDisplay<'_, Green, Self>

Change the foreground color to green
Source§

fn on_green(&self) -> BgColorDisplay<'_, Green, Self>

Change the background color to green
Source§

fn yellow(&self) -> FgColorDisplay<'_, Yellow, Self>

Change the foreground color to yellow
Source§

fn on_yellow(&self) -> BgColorDisplay<'_, Yellow, Self>

Change the background color to yellow
Source§

fn blue(&self) -> FgColorDisplay<'_, Blue, Self>

Change the foreground color to blue
Source§

fn on_blue(&self) -> BgColorDisplay<'_, Blue, Self>

Change the background color to blue
Source§

fn magenta(&self) -> FgColorDisplay<'_, Magenta, Self>

Change the foreground color to magenta
Source§

fn on_magenta(&self) -> BgColorDisplay<'_, Magenta, Self>

Change the background color to magenta
Source§

fn purple(&self) -> FgColorDisplay<'_, Magenta, Self>

Change the foreground color to purple
Source§

fn on_purple(&self) -> BgColorDisplay<'_, Magenta, Self>

Change the background color to purple
Source§

fn cyan(&self) -> FgColorDisplay<'_, Cyan, Self>

Change the foreground color to cyan
Source§

fn on_cyan(&self) -> BgColorDisplay<'_, Cyan, Self>

Change the background color to cyan
Source§

fn white(&self) -> FgColorDisplay<'_, White, Self>

Change the foreground color to white
Source§

fn on_white(&self) -> BgColorDisplay<'_, White, Self>

Change the background color to white
Source§

fn default_color(&self) -> FgColorDisplay<'_, Default, Self>

Change the foreground color to the terminal default
Source§

fn on_default_color(&self) -> BgColorDisplay<'_, Default, Self>

Change the background color to the terminal default
Source§

fn bright_black(&self) -> FgColorDisplay<'_, BrightBlack, Self>

Change the foreground color to bright black
Source§

fn on_bright_black(&self) -> BgColorDisplay<'_, BrightBlack, Self>

Change the background color to bright black
Source§

fn bright_red(&self) -> FgColorDisplay<'_, BrightRed, Self>

Change the foreground color to bright red
Source§

fn on_bright_red(&self) -> BgColorDisplay<'_, BrightRed, Self>

Change the background color to bright red
Source§

fn bright_green(&self) -> FgColorDisplay<'_, BrightGreen, Self>

Change the foreground color to bright green
Source§

fn on_bright_green(&self) -> BgColorDisplay<'_, BrightGreen, Self>

Change the background color to bright green
Source§

fn bright_yellow(&self) -> FgColorDisplay<'_, BrightYellow, Self>

Change the foreground color to bright yellow
Source§

fn on_bright_yellow(&self) -> BgColorDisplay<'_, BrightYellow, Self>

Change the background color to bright yellow
Source§

fn bright_blue(&self) -> FgColorDisplay<'_, BrightBlue, Self>

Change the foreground color to bright blue
Source§

fn on_bright_blue(&self) -> BgColorDisplay<'_, BrightBlue, Self>

Change the background color to bright blue
Source§

fn bright_magenta(&self) -> FgColorDisplay<'_, BrightMagenta, Self>

Change the foreground color to bright magenta
Source§

fn on_bright_magenta(&self) -> BgColorDisplay<'_, BrightMagenta, Self>

Change the background color to bright magenta
Source§

fn bright_purple(&self) -> FgColorDisplay<'_, BrightMagenta, Self>

Change the foreground color to bright purple
Source§

fn on_bright_purple(&self) -> BgColorDisplay<'_, BrightMagenta, Self>

Change the background color to bright purple
Source§

fn bright_cyan(&self) -> FgColorDisplay<'_, BrightCyan, Self>

Change the foreground color to bright cyan
Source§

fn on_bright_cyan(&self) -> BgColorDisplay<'_, BrightCyan, Self>

Change the background color to bright cyan
Source§

fn bright_white(&self) -> FgColorDisplay<'_, BrightWhite, Self>

Change the foreground color to bright white
Source§

fn on_bright_white(&self) -> BgColorDisplay<'_, BrightWhite, Self>

Change the background color to bright white
Source§

fn bold(&self) -> BoldDisplay<'_, Self>

Make the text bold
Source§

fn dimmed(&self) -> DimDisplay<'_, Self>

Make the text dim
Source§

fn italic(&self) -> ItalicDisplay<'_, Self>

Make the text italicized
Source§

fn underline(&self) -> UnderlineDisplay<'_, Self>

Make the text underlined
Make the text blink
Make the text blink (but fast!)
Source§

fn reversed(&self) -> ReversedDisplay<'_, Self>

Swap the foreground and background colors
Source§

fn hidden(&self) -> HiddenDisplay<'_, Self>

Hide the text
Source§

fn strikethrough(&self) -> StrikeThroughDisplay<'_, Self>

Cross out the text
Source§

fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the foreground color at runtime. Only use if you do not know which color will be used at compile-time. If the color is constant, use either OwoColorize::fg or a color-specific method, such as OwoColorize::green, Read more
Source§

fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the background color at runtime. Only use if you do not know what color to use at compile-time. If the color is constant, use either OwoColorize::bg or a color-specific method, such as OwoColorize::on_yellow, Read more
Source§

fn fg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the foreground color to a specific RGB value.
Source§

fn bg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the background color to a specific RGB value.
Source§

fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>

Sets the foreground color to an RGB value.
Source§

fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>

Sets the background color to an RGB value.
Source§

fn style(&self, style: Style) -> Styled<&Self>

Apply a runtime-determined style
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> RoundFrom<T> for T

Source§

fn round_from(x: T) -> T

Performs the conversion.
Source§

impl<T, U> RoundInto<U> for T
where U: RoundFrom<T>,

Source§

fn round_into(self) -> U

Performs the conversion.
Source§

impl<T> SectionExt for T
where T: Display + Send + Sync + 'static,

Source§

fn header<C>(self, header: C) -> IndentedSection<C, T>
where C: Display + Send + Sync + 'static,

Add a header to a Section and indent the body Read more
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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

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

Source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for T
where T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,

Source§

impl<T> PropertyValue for T
where T: Default + Clone + Interpolatable + 'static,