TryEq

Trait TryEq 

Source
pub trait TryEq<T> {
    // Required method
    fn try_eq(&self, other: &T) -> Result<bool, TypeError>;
}

Required Methods§

Source

fn try_eq(&self, other: &T) -> Result<bool, TypeError>

Implementations on Foreign Types§

Source§

impl TryEq<Parameter> for Vec<(&str, &str)>

Source§

fn try_eq(&self, other: &Parameter) -> Result<bool, TypeError>

Source§

impl TryEq<Parameter> for Vec<(&str, f64)>

Source§

fn try_eq(&self, other: &Parameter) -> Result<bool, TypeError>

Source§

impl TryEq<Parameter> for Vec<(&str, Sexagesimal)>

Source§

fn try_eq(&self, other: &Parameter) -> Result<bool, TypeError>

Source§

impl TryEq<Parameter> for Vec<OneNumber>

Source§

fn try_eq(&self, other: &Parameter) -> Result<bool, TypeError>

Source§

impl TryEq<Parameter> for Vec<OneSwitch>

Source§

fn try_eq(&self, other: &Parameter) -> Result<bool, TypeError>

Source§

impl TryEq<Parameter> for Vec<OneText>

Source§

fn try_eq(&self, other: &Parameter) -> Result<bool, TypeError>

Source§

impl<I: Into<SwitchState> + Copy> TryEq<Parameter> for Vec<(&str, I)>

Source§

fn try_eq(&self, other: &Parameter) -> Result<bool, TypeError>

Implementors§