pub enum Variable {
Null,
Bool(bool),
Number(Decimal),
String(Rc<str>),
Array(Rc<RefCell<Vec<Variable>>>),
Object(Rc<RefCell<HashMap<Rc<str>, Variable>>>),
Dynamic(Rc<dyn DynamicVariable>),
}
Variants§
Null
Bool(bool)
Number(Decimal)
String(Rc<str>)
Array(Rc<RefCell<Vec<Variable>>>)
Object(Rc<RefCell<HashMap<Rc<str>, Variable>>>)
Dynamic(Rc<dyn DynamicVariable>)
Implementations§
Source§impl Variable
impl Variable
pub fn from_array(arr: Vec<Self>) -> Self
pub fn from_object(obj: HashMap<Rc<str>, Self>) -> Self
pub fn empty_object() -> Self
pub fn empty_array() -> Self
pub fn as_str(&self) -> Option<&str>
pub fn as_rc_str(&self) -> Option<Rc<str>>
pub fn as_array(&self) -> Option<Rc<RefCell<Vec<Variable>>>>
pub fn is_array(&self) -> bool
pub fn as_object(&self) -> Option<Rc<RefCell<HashMap<Rc<str>, Variable>>>>
pub fn is_object(&self) -> bool
pub fn as_bool(&self) -> Option<bool>
pub fn as_number(&self) -> Option<Decimal>
pub fn type_name(&self) -> &'static str
pub fn dynamic<T: DynamicVariable + 'static>(&self) -> Option<&T>
pub fn to_value(&self) -> Value
pub fn dot(&self, key: &str) -> Option<Variable>
pub fn dot_remove(&self, key: &str) -> Option<Variable>
pub fn dot_insert(&self, key: &str, variable: Variable) -> Option<Variable>
pub fn dot_insert_detached( &self, key: &str, variable: Variable, ) -> Option<Variable>
pub fn merge(&mut self, patch: &Variable) -> Variable
pub fn merge_clone(&mut self, patch: &Variable) -> Variable
pub fn shallow_clone(&self) -> Self
pub fn deep_clone(&self) -> Self
pub fn depth_clone(&self, depth: usize) -> Self
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Variable
impl<'de> Deserialize<'de> for Variable
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl TryFrom<&Variable> for NaiveDateTime
impl TryFrom<&Variable> for NaiveDateTime
impl Eq for Variable
Auto Trait Implementations§
impl Freeze for Variable
impl !RefUnwindSafe for Variable
impl !Send for Variable
impl !Sync for Variable
impl Unpin for Variable
impl !UnwindSafe for Variable
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