Struct minijinja::value::DynObject

source ·
pub struct DynObject { /* private fields */ }
Expand description

Typed-erased version of Object

Implementations§

source§

impl DynObject

source

pub fn new<T: Object + Send + Sync + 'static>(v: Arc<T>) -> Self

Returns a new boxed, type-erased Object.

source

pub fn repr(&self) -> ObjectRepr

Calls Object::repr on the underlying boxed value.

source

pub fn get_value(&self, key: &Value) -> Option<Value>

Calls Object::get_value on the underlying boxed value.

source

pub fn enumerate(&self) -> Enumerator

Calls Object::enumerate on the underlying boxed value.

source

pub fn is_true(&self) -> bool

Calls Object::is_true on the underlying boxed value.

source

pub fn enumerator_len(&self) -> Option<usize>

Calls Object::enumerator_len on the underlying boxed value.

source

pub fn call( &self, state: &State<'_, '_>, args: &[Value] ) -> Result<Value, Error>

Calls Object::call on the underlying boxed value.

source

pub fn call_method( &self, state: &State<'_, '_>, method: &str, args: &[Value] ) -> Result<Value, Error>

Calls Object::call_method on the underlying boxed value.

source

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

Calls Object::render on the underlying boxed value.

source

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

Returns the type name of the conrete underlying type.

source

pub fn downcast_ref<T: 'static>(&self) -> Option<&T>

Downcast to T if the boxed value holds a T.

This is basically the “reverse” of Value::from_object.

§Example
use std::fmt;

#[derive(Debug)]
struct Thing {
    id: usize,
}

impl Object for Thing {}

let x_value = Value::from_object(Thing { id: 42 });
let value_as_obj = x_value.as_object().unwrap();
let thing = value_as_obj.downcast_ref::<Thing>().unwrap();
assert_eq!(thing.id, 42);
source

pub fn downcast<T: 'static>(&self) -> Option<Arc<T>>

Downcast to T if the boxed value holds a T.

For details see downcast_ref.

source

pub fn is<T: 'static>(&self) -> bool

Checks if the boxed value is a T.

For details see downcast_ref.

source§

impl DynObject

source

pub fn try_iter(&self) -> Option<Box<dyn Iterator<Item = Value> + Send + Sync>>
where Self: 'static,

Iterates over this object.

If this returns None then the default object iteration as defined by the object’s enumeration is used.

source

pub fn try_iter_pairs( &self ) -> Option<Box<dyn Iterator<Item = (Value, Value)> + Send + Sync>>

Iterate over key and value at once.

Trait Implementations§

source§

impl<'a> ArgType<'a> for DynObject

§

type Output = DynObject

The output type of this argument.
source§

impl Clone for DynObject

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for DynObject

source§

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

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

impl Display for DynObject

source§

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

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

impl Drop for DynObject

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T: Object + Send + Sync + 'static> From<Arc<T>> for DynObject

source§

fn from(value: Arc<T>) -> Self

Converts to this type from the input type.
source§

impl From<DynObject> for Value

source§

fn from(val: DynObject) -> Self

Converts to this type from the input type.
source§

impl Hash for DynObject

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 Send for DynObject

source§

impl Sync for DynObject

Auto Trait Implementations§

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<I> FunctionResult for I
where I: Into<Value>,

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> ToOwned for T
where T: Clone,

§

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§

default 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>,

§

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>,

§

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.