pub enum Object {
Null,
Map(Mutex<HashMap<Identifier, Arc<Object>>>),
Str(String),
Node(Element),
List(Mutex<Vec<Arc<Object>>>),
Boolean(bool),
Number(f64),
Fn(Vec<FnParam>, Block),
Return(Arc<Object>),
Module(EnvPointer),
}
Variants§
Null
Map(Mutex<HashMap<Identifier, Arc<Object>>>)
Str(String)
Node(Element)
List(Mutex<Vec<Arc<Object>>>)
Boolean(bool)
Number(f64)
Fn(Vec<FnParam>, Block)
Return(Arc<Object>)
Module(EnvPointer)
Implementations§
Source§impl Object
impl Object
pub fn type_str(&self) -> &str
pub async fn into_iterable( &self, ) -> Option<impl IntoIterator<Item = Arc<Object>>>
pub fn to_display(&self) -> BoxFuture<'_, String>
pub fn eq<'a>(&'a self, other: &'a Self) -> BoxFuture<'a, bool>
pub async fn to_json(&self) -> Value
pub async fn is_truthy(&self) -> bool
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Object
impl !RefUnwindSafe for Object
impl Send for Object
impl Sync for Object
impl Unpin for Object
impl !UnwindSafe for Object
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.