[][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 PartialEq<Value> for Value
[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Eq for Value
[src]

impl PartialOrd<Value> for Value
[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Clone for Value
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default 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

Blanket Implementations

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

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

type Owned = T

impl<T> From for T
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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