Enum edn::query::NonIntegerConstant [] [src]

pub enum NonIntegerConstant {
    Boolean(bool),
    BigInteger(BigInt),
    Float(OrderedFloat<f64>),
    Text(ValueRc<String>),
    Instant(DateTime<Utc>),
    Uuid(Uuid),
}

These are the scalar values representable in EDN.

Variants

Trait Implementations

impl Clone for NonIntegerConstant
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NonIntegerConstant
[src]

Formats the value using the given formatter. Read more

impl Eq for NonIntegerConstant
[src]

impl PartialEq for NonIntegerConstant
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a> From<&'a str> for NonIntegerConstant
[src]

Performs the conversion.

impl From<String> for NonIntegerConstant
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for NonIntegerConstant

impl Sync for NonIntegerConstant