Skip to main content

Value

Enum Value 

Source
pub enum Value {
Show 15 variants Nil, Boolean(bool), Integer(i64), Instant(DateTime<Utc>), BigInteger(BigInt), Float(OrderedFloat<f64>), Text(String), Uuid(Uuid), PlainSymbol(PlainSymbol), NamespacedSymbol(NamespacedSymbol), Keyword(Keyword), Vector(Vec<Value>), List(LinkedList<Value>), Set(BTreeSet<Value>), Map(BTreeMap<Value, Value>),
}
Expand description

Value represents one of the allowed values in an EDN string.

Variants§

§

Nil

§

Boolean(bool)

§

Integer(i64)

§

Instant(DateTime<Utc>)

§

BigInteger(BigInt)

§

Float(OrderedFloat<f64>)

§

Text(String)

§

Uuid(Uuid)

§

PlainSymbol(PlainSymbol)

§

NamespacedSymbol(NamespacedSymbol)

§

Keyword(Keyword)

§

Vector(Vec<Value>)

§

List(LinkedList<Value>)

§

Set(BTreeSet<Value>)

§

Map(BTreeMap<Value, Value>)

Implementations§

Source§

impl Value

Source

pub fn matches(&self, pattern: &Value) -> bool

Performs default pattern matching between this value and some pattern. Returns true if matching succeeds.

Source§

impl Value

Source

pub fn to_pretty(&self, width: usize) -> Result<String, Error>

Return a pretty string representation of this Value.

Source§

impl Value

Source

pub fn with_spans(self) -> ValueAndSpan

For debug use only!

But right now, it’s used in the bootstrapper. We’ll fix that soon.

Source§

impl Value

Source

pub fn is_nil(&self) -> bool

Source

pub fn is_boolean(&self) -> bool

Source

pub fn is_integer(&self) -> bool

Source

pub fn is_instant(&self) -> bool

Source

pub fn is_big_integer(&self) -> bool

Source

pub fn is_float(&self) -> bool

Source

pub fn is_text(&self) -> bool

Source

pub fn is_uuid(&self) -> bool

Source

pub fn is_symbol(&self) -> bool

Source

pub fn is_namespaced_symbol(&self) -> bool

Source

pub fn is_vector(&self) -> bool

Source

pub fn is_list(&self) -> bool

Source

pub fn is_set(&self) -> bool

Source

pub fn is_map(&self) -> bool

Source

pub fn is_keyword(&self) -> bool

Source

pub fn is_namespaced_keyword(&self) -> bool

Source

pub fn as_nil(&self) -> Option<()>

as_nil does not use the macro as it does not have an underlying value, and returns Option<()>.

Source

pub fn as_boolean(&self) -> Option<bool>

Source

pub fn as_integer(&self) -> Option<i64>

Source

pub fn as_instant(&self) -> Option<DateTime<Utc>>

Source

pub fn as_float(&self) -> Option<f64>

Source

pub fn as_big_integer(&self) -> Option<&BigInt>

Source

pub fn as_ordered_float(&self) -> Option<&OrderedFloat<f64>>

Source

pub fn as_text(&self) -> Option<&String>

Source

pub fn as_uuid(&self) -> Option<&Uuid>

Source

pub fn as_symbol(&self) -> Option<&PlainSymbol>

Source

pub fn as_namespaced_symbol(&self) -> Option<&NamespacedSymbol>

Source

pub fn as_keyword(&self) -> Option<&Keyword>

Source

pub fn as_plain_keyword(&self) -> Option<&Keyword>

Source

pub fn as_namespaced_keyword(&self) -> Option<&Keyword>

Source

pub fn as_vector(&self) -> Option<&Vec<Value>>

Source

pub fn as_list(&self) -> Option<&LinkedList<Value>>

Source

pub fn as_set(&self) -> Option<&BTreeSet<Value>>

Source

pub fn as_map(&self) -> Option<&BTreeMap<Value, Value>>

Source

pub fn into_boolean(self) -> Option<bool>

Source

pub fn into_integer(self) -> Option<i64>

Source

pub fn into_instant(self) -> Option<DateTime<Utc>>

Source

pub fn into_big_integer(self) -> Option<BigInt>

Source

pub fn into_ordered_float(self) -> Option<OrderedFloat<f64>>

Source

pub fn into_float(self) -> Option<f64>

Source

pub fn into_text(self) -> Option<String>

Source

pub fn into_uuid(self) -> Option<Uuid>

Source

pub fn into_symbol(self) -> Option<PlainSymbol>

Source

pub fn into_namespaced_symbol(self) -> Option<NamespacedSymbol>

Source

pub fn into_keyword(self) -> Option<Keyword>

Source

pub fn into_plain_keyword(self) -> Option<Keyword>

Source

pub fn into_namespaced_keyword(self) -> Option<Keyword>

Source

pub fn into_vector(self) -> Option<Vec<Value>>

Source

pub fn into_list(self) -> Option<LinkedList<Value>>

Source

pub fn into_set(self) -> Option<BTreeSet<Value>>

Source

pub fn into_map(self) -> Option<BTreeMap<Value, Value>>

Source

pub fn from_bigint(src: &str) -> Option<Value>

Source

pub fn from_float(src: f64) -> Value

Source

pub fn from_ordered_float(src: OrderedFloat<f64>) -> Value

Source

pub fn from_symbol<'a, T: Into<Option<&'a str>>>( namespace: T, name: &str, ) -> Value

Source

pub fn from_keyword<'a, T: Into<Option<&'a str>>>( namespace: T, name: &str, ) -> Value

Source

pub fn is_collection(&self) -> bool

Source

pub fn is_atom(&self) -> bool

Source

pub fn into_atom(self) -> Option<Value>

Trait Implementations§

Source§

impl Clone for Value

Source§

fn clone(&self) -> Value

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Value

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Value

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for Value

Source§

impl From<SpannedValue> for Value

Source§

fn from(src: SpannedValue) -> Value

Converts to this type from the input type.
Source§

impl From<ValueAndSpan> for Value

Source§

fn from(src: ValueAndSpan) -> Value

Converts to this type from the input type.
Source§

impl Hash for Value

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for Value

Source§

fn cmp(&self, other: &Value) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Value

Source§

fn eq(&self, other: &Value) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Value

Source§

fn partial_cmp(&self, other: &Value) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl StructuralPartialEq for Value

Auto Trait Implementations§

§

impl Freeze for Value

§

impl RefUnwindSafe for Value

§

impl Send for Value

§

impl Sync for Value

§

impl Unpin for Value

§

impl UnsafeUnpin for Value

§

impl UnwindSafe for Value

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.