Trait typerat::Recip

source ·
pub trait Recip {
    type Output;
}
Expand description

The unary reciprocal operation.

Required Associated Types§

source

type Output

The resulting type after applying the reciprocal operation.

Implementors§

source§

impl<Un, Ud> Recip for Q<NInt<Un>, PInt<Ud>>

§

type Output = Q<NInt<Ud>, PInt<Un>>

source§

impl<Un, Ud> Recip for Q<PInt<Un>, PInt<Ud>>

§

type Output = Q<PInt<Ud>, PInt<Un>>