Skip to main content

NegExpand

Trait NegExpand 

Source
pub trait NegExpand {
    // Required method
    fn __expand_neg_method(self, scope: &Scope) -> Self;
}

Required Methods§

Source

fn __expand_neg_method(self, scope: &Scope) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementors§

Source§

impl<T: Neg<Output = T> + CubePrimitive> NegExpand for NativeExpand<T>