Skip to main content

PlaneNumeric

Trait PlaneNumeric 

Source
pub trait PlaneNumeric {
    // Required methods
    fn __expand_native_sum(scope: &Scope, value: ExpandValue) -> ExpandValue;
    fn __expand_native_inclusive_sum(
        scope: &Scope,
        value: ExpandValue,
    ) -> ExpandValue;
    fn __expand_native_exclusive_sum(
        scope: &Scope,
        value: ExpandValue,
    ) -> ExpandValue;
    fn __expand_native_prod(scope: &Scope, value: ExpandValue) -> ExpandValue;
    fn __expand_native_inclusive_prod(
        scope: &Scope,
        value: ExpandValue,
    ) -> ExpandValue;
    fn __expand_native_exclusive_prod(
        scope: &Scope,
        value: ExpandValue,
    ) -> ExpandValue;
    fn __expand_native_plane_min(
        scope: &Scope,
        value: ExpandValue,
    ) -> ExpandValue;
    fn __expand_native_plane_max(
        scope: &Scope,
        value: ExpandValue,
    ) -> ExpandValue;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl PlaneNumeric for bf16

Source§

impl PlaneNumeric for f16

Source§

impl PlaneNumeric for f32

Source§

impl PlaneNumeric for f64

Source§

impl PlaneNumeric for i8

Source§

impl PlaneNumeric for i16

Source§

impl PlaneNumeric for i32

Source§

impl PlaneNumeric for i64

Source§

impl PlaneNumeric for isize

Source§

impl PlaneNumeric for u8

Source§

impl PlaneNumeric for u16

Source§

impl PlaneNumeric for u32

Source§

impl PlaneNumeric for u64

Source§

impl PlaneNumeric for usize

Implementors§