Enum edn::query::FnArg
[−]
[src]
pub enum FnArg { Variable(Variable), SrcVar(SrcVar), EntidOrInteger(i64), IdentOrKeyword(Keyword), Constant(NonIntegerConstant), Vector(Vec<FnArg>), }
Variants
Variable(Variable)
SrcVar(SrcVar)
EntidOrInteger(i64)
IdentOrKeyword(Keyword)
Constant(NonIntegerConstant)
Vector(Vec<FnArg>)
Methods
impl FnArg
[src]
pub fn as_variable(&self) -> Option<&Variable>
[src]
Trait Implementations
impl Clone for FnArg
[src]
fn clone(&self) -> FnArg
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for FnArg
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Eq for FnArg
[src]
impl PartialEq for FnArg
[src]
fn eq(&self, __arg_0: &FnArg) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &FnArg) -> bool
[src]
This method tests for !=
.