pub trait Exp {
type Output;
// Required method
fn exp(self) -> Self::Output;
}Expand description
Required Associated Types§
Required Methods§
Implementations on Foreign Types§
Implementors§
source§impl<'a, T: Numeric + Real + Primitive> Exp for &Record<'a, T>
impl<'a, T: Numeric + Real + Primitive> Exp for &Record<'a, T>
Exponential, ie ex of a Record by reference.
source§impl<'a, T: Numeric + Real + Primitive> Exp for Record<'a, T>
impl<'a, T: Numeric + Real + Primitive> Exp for Record<'a, T>
Operation for a record by value.