Enum definitions::Value
[−]
[src]
pub enum Value {
Address(Address),
Boolean(bool),
Float(Float),
Integer(Integer),
Color(u8, u8, u8),
Char(char),
}Variants
Address(Address)Boolean(bool)Float(Float)Integer(Integer)Color(u8, u8, u8)Char(char)Methods
impl Value[src]
fn get_type(&self) -> Type
fn is_a(&self, val_type: &Type) -> bool
fn convert_to(&self, val_type: &Type) -> Self
Trait Implementations
impl Debug for Value[src]
impl Clone for Value[src]
fn clone(&self) -> Value
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl PartialEq for Value[src]
fn eq(&self, __arg_0: &Value) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Value) -> bool
This method tests for !=.
impl PartialOrd for Value[src]
fn partial_cmp(&self, __arg_0: &Value) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &Value) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &Value) -> bool
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &Value) -> bool
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &Value) -> bool
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl FromStr for Value[src]
type Err = &'static str
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, Self::Err>
Parses a string s to return a value of this type. Read more
impl Add for Value[src]
type Output = Result<Value>
The resulting type after applying the + operator
fn add(self, rhs: Self) -> Self::Output
The method for the + operator
impl Sub for Value[src]
type Output = Result<Value>
The resulting type after applying the - operator
fn sub(self, rhs: Self) -> Self::Output
The method for the - operator
impl Mul for Value[src]
type Output = Result<Value>
The resulting type after applying the * operator
fn mul(self, rhs: Self) -> Self::Output
The method for the * operator
impl Div for Value[src]
type Output = Result<Value>
The resulting type after applying the / operator
fn div(self, rhs: Self) -> Self::Output
The method for the / operator