Struct edn::query::Variable
[−]
[src]
pub struct Variable(pub Rc<PlainSymbol>);
Methods
impl Variable
[src]
impl Variable
pub fn as_str(&self) -> &str
[src]
pub fn as_str(&self) -> &str
pub fn to_string(&self) -> String
[src]
pub fn to_string(&self) -> String
pub fn name(&self) -> PlainSymbol
[src]
pub fn name(&self) -> PlainSymbol
pub fn from_valid_name(name: &str) -> Variable
[src]
pub fn from_valid_name(name: &str) -> Variable
Return a new Variable
, assuming that the provided string is a valid name.
impl Variable
[src]
impl Variable
pub fn from_rc(sym: Rc<PlainSymbol>) -> Option<Variable>
[src]
pub fn from_rc(sym: Rc<PlainSymbol>) -> Option<Variable>
pub fn from_symbol(sym: &PlainSymbol) -> Option<Variable>
[src]
pub fn from_symbol(sym: &PlainSymbol) -> Option<Variable>
TODO: intern strings. #398.
Trait Implementations
impl Clone for Variable
[src]
impl Clone for Variable
fn clone(&self) -> Variable
[src]
fn clone(&self) -> Variable
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl PartialEq for Variable
[src]
impl PartialEq for Variable
fn eq(&self, __arg_0: &Variable) -> bool
[src]
fn eq(&self, __arg_0: &Variable) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Variable) -> bool
[src]
fn ne(&self, __arg_0: &Variable) -> bool
This method tests for !=
.
impl Eq for Variable
[src]
impl Eq for Variable
impl Hash for Variable
[src]
impl Hash for Variable
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl PartialOrd for Variable
[src]
impl PartialOrd for Variable
fn partial_cmp(&self, __arg_0: &Variable) -> Option<Ordering>
[src]
fn partial_cmp(&self, __arg_0: &Variable) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &Variable) -> bool
[src]
fn lt(&self, __arg_0: &Variable) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &Variable) -> bool
[src]
fn le(&self, __arg_0: &Variable) -> 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: &Variable) -> bool
[src]
fn gt(&self, __arg_0: &Variable) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &Variable) -> bool
[src]
fn ge(&self, __arg_0: &Variable) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for Variable
[src]
impl Ord for Variable
fn cmp(&self, __arg_0: &Variable) -> Ordering
[src]
fn cmp(&self, __arg_0: &Variable) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl FromValue<Variable> for Variable
[src]
impl FromValue<Variable> for Variable
If the provided EDN value is a PlainSymbol beginning with '?', return it wrapped in a Variable. If not, return None. TODO: intern strings. #398.
fn from_value(v: &ValueAndSpan) -> Option<Variable>
[src]
fn from_value(v: &ValueAndSpan) -> Option<Variable>
impl Debug for Variable
[src]
impl Debug for Variable
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Display for Variable
[src]
impl Display for Variable
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl From<Variable> for Element
[src]
impl From<Variable> for Element