[][src]Struct liquid_value::ScalarCow

pub struct ScalarCow<'s>(_);

A Liquid scalar value

Methods

impl<'s> ScalarCow<'s>[src]

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

Convert a value into a ScalarCow.

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

A Display for a Scalar as source code.

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

A Display for a Scalar rendered for the user.

pub fn into_owned(self) -> Self[src]

Create an owned version of the value.

pub fn as_ref<'r: 's>(&'r self) -> ScalarCow<'r>[src]

Create a reference to the value.

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

Interpret as a string.

pub fn into_string(self) -> String[src]

Convert to a string.

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

Interpret as an integer, if possible

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

Interpret as a float, if possible

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

Interpret as a bool, if possible

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

Interpret as a date, if possible

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).

Trait Implementations

impl<'s> From<i32> for ScalarCow<'s>[src]

impl<'s> From<f64> for ScalarCow<'s>[src]

impl<'s> From<bool> for ScalarCow<'s>[src]

impl<'s> From<DateTime<FixedOffset>> for ScalarCow<'s>[src]

impl<'s> From<String> for ScalarCow<'s>[src]

impl<'s> From<&'s String> for ScalarCow<'s>[src]

impl<'s> From<&'s str> for ScalarCow<'s>[src]

impl<'s> From<Cow<'s, str>> for ScalarCow<'s>[src]

impl<'s> Extend<ScalarCow<'s>> for Path<'s>[src]

impl<'s> Clone for ScalarCow<'s>[src]

impl<'s> Eq for ScalarCow<'s>[src]

impl<'s> PartialEq<ScalarCow<'s>> for ScalarCow<'s>[src]

impl<'s> PartialEq<i32> for ScalarCow<'s>[src]

impl<'s> PartialEq<f64> for ScalarCow<'s>[src]

impl<'s> PartialEq<bool> for ScalarCow<'s>[src]

impl<'s> PartialEq<DateTime<FixedOffset>> for ScalarCow<'s>[src]

impl<'s> PartialEq<str> for ScalarCow<'s>[src]

impl<'s> PartialOrd<ScalarCow<'s>> for ScalarCow<'s>[src]

impl<'s> PartialOrd<i32> for ScalarCow<'s>[src]

impl<'s> PartialOrd<f64> for ScalarCow<'s>[src]

impl<'s> PartialOrd<bool> for ScalarCow<'s>[src]

impl<'s> PartialOrd<DateTime<FixedOffset>> for ScalarCow<'s>[src]

impl<'s> PartialOrd<str> for ScalarCow<'s>[src]

impl<'s> Debug for ScalarCow<'s>[src]

impl<'s> Serialize for ScalarCow<'s>[src]

impl<'de, 's> Deserialize<'de> for ScalarCow<'s>[src]

Auto Trait Implementations

impl<'s> Send for ScalarCow<'s>

impl<'s> Sync for ScalarCow<'s>

impl<'s> Unpin for ScalarCow<'s>

impl<'s> UnwindSafe for ScalarCow<'s>

impl<'s> RefUnwindSafe for ScalarCow<'s>

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]