Type Alias PQLDouble

Source
pub type PQLDouble = f64;

Trait Implementations§

Source§

impl<'a> TryFrom<&'a VmValue> for &'a PQLDouble

Source§

type Error = PQLError

The type returned in the event of a conversion error.
Source§

fn try_from(value: &'a VmValue) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut VmValue> for &'a mut PQLDouble

Source§

type Error = PQLError

The type returned in the event of a conversion error.
Source§

fn try_from(value: &'a mut VmValue) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<VmStackValue> for PQLDouble

Source§

type Error = PQLError

The type returned in the event of a conversion error.
Source§

fn try_from(v: VmStackValue) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<VmStackValueNum> for PQLDouble

Source§

type Error = TryIntoError<VmStackValueNum>

The type returned in the event of a conversion error.
Source§

fn try_from( value: VmStackValueNum, ) -> Result<Self, TryIntoError<VmStackValueNum>>

Performs the conversion.