[][src]Enum liquid_value::Value

pub enum Value {
    Scalar(Scalar),
    Array(Array),
    Object(Object),
    Nil,
    Empty,
    Blank,
}

An enum to represent different value types

Variants

Scalar(Scalar)

A scalar value.

Array(Array)

A sequence of Values.

Object(Object)

A sequence of key/Value pairs.

Nil

Nothing.

Empty

No content.

Blank

Evaluates to empty string.

Methods

impl Value[src]

pub fn scalar<T: Into<Scalar>>(value: T) -> Self[src]

Create as a Scalar.

pub fn array<I: IntoIterator<Item = Self>>(iter: I) -> Self[src]

Create as an Array.

pub fn nil() -> Self[src]

Create as nothing.

pub fn source(&self) -> ValueSource[src]

A Display for a Scalar as source code.

pub fn render(&self) -> ValueRendered[src]

A Display for a Value rendered for the user.

pub fn to_str(&self) -> Cow<str>[src]

Interpret as a string.

pub fn as_scalar(&self) -> Option<&Scalar>[src]

Extracts the scalar value if it is a scalar.

pub fn into_scalar(self) -> Option<Scalar>[src]

Extracts the scalar value if it is a scalar.

pub fn is_scalar(&self) -> bool[src]

Tests whether this value is a scalar

pub fn as_array(&self) -> Option<&Array>[src]

Extracts the array value if it is an array.

pub fn as_array_mut(&mut self) -> Option<&mut Array>[src]

Extracts the array value if it is an array.

pub fn into_array(self) -> Option<Array>[src]

Extracts the array value if it is an array.

pub fn is_array(&self) -> bool[src]

Tests whether this value is an array

pub fn as_object(&self) -> Option<&Object>[src]

Extracts the object value if it is a object.

pub fn as_object_mut(&mut self) -> Option<&mut Object>[src]

Extracts the object value if it is a object.

pub fn into_object(self) -> Option<Object>[src]

Extracts the object value if it is a object.

pub fn is_object(&self) -> bool[src]

Tests whether this value is an object

pub fn as_nil(&self) -> Option<()>[src]

Extracts the nil value if it is nil

pub fn is_nil(&self) -> bool[src]

Tests whether this value is nil

pub fn as_empty(&self) -> Option<()>[src]

Extracts the empty value if it is empty

pub fn is_empty(&self) -> bool[src]

Tests whether this value is empty

pub fn as_blank(&self) -> Option<()>[src]

Extracts the blank value if it is blank

pub fn is_blank(&self) -> bool[src]

Tests whether this value is blank

pub fn is_truthy(&self) -> bool[src]

Evaluate using Liquid "truthiness"

pub fn is_default(&self) -> bool[src]

Whether a default constructed value.

pub fn type_name(&self) -> &'static str[src]

Report the data type (generally for error reporting).

pub fn contains_key(&self, index: &Scalar) -> bool[src]

Access a contained Value.

Important traits for Keys
pub fn keys(&self) -> Keys[src]

Keys available for lookup.

pub fn get<'s>(&'s self, index: &ScalarCow) -> Option<&'s Self>[src]

Access a contained Value.

Trait Implementations

impl Clone for Value[src]

impl Default for Value[src]

impl Eq for Value[src]

impl PartialEq<Value> for Value[src]

impl PartialOrd<Value> for Value[src]

impl Debug for Value[src]

impl Serialize for Value[src]

impl<'de> Deserialize<'de> for Value[src]

Auto Trait Implementations

impl Send for Value

impl Sync for Value

impl Unpin for Value

impl UnwindSafe for Value

impl RefUnwindSafe for Value

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]