pub enum WorldInfoType {
String(String),
Boolean(bool),
Number(Number),
List(Vec<WorldInfoType>),
Map(HashMap<String, WorldInfoType>),
Null,
}Variants§
String(String)
Boolean(bool)
Number(Number)
List(Vec<WorldInfoType>)
Map(HashMap<String, WorldInfoType>)
Null
Trait Implementations§
Source§impl Clone for WorldInfoType
impl Clone for WorldInfoType
Source§fn clone(&self) -> WorldInfoType
fn clone(&self) -> WorldInfoType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WorldInfoType
impl Debug for WorldInfoType
Source§impl Into<WorldInfoType> for &Value
impl Into<WorldInfoType> for &Value
Source§fn into(self) -> WorldInfoType
fn into(self) -> WorldInfoType
Converts this type into the (usually inferred) input type.
Source§impl Into<WorldInfoType> for HashMap<String, WorldInfoType>
impl Into<WorldInfoType> for HashMap<String, WorldInfoType>
Source§fn into(self) -> WorldInfoType
fn into(self) -> WorldInfoType
Converts this type into the (usually inferred) input type.
Source§impl Into<WorldInfoType> for String
impl Into<WorldInfoType> for String
Source§fn into(self) -> WorldInfoType
fn into(self) -> WorldInfoType
Converts this type into the (usually inferred) input type.
Source§impl Into<WorldInfoType> for Value
impl Into<WorldInfoType> for Value
Source§fn into(self) -> WorldInfoType
fn into(self) -> WorldInfoType
Converts this type into the (usually inferred) input type.
Source§impl Into<WorldInfoType> for Vec<WorldInfoType>
impl Into<WorldInfoType> for Vec<WorldInfoType>
Source§fn into(self) -> WorldInfoType
fn into(self) -> WorldInfoType
Converts this type into the (usually inferred) input type.
Source§impl Into<WorldInfoType> for bool
impl Into<WorldInfoType> for bool
Source§fn into(self) -> WorldInfoType
fn into(self) -> WorldInfoType
Converts this type into the (usually inferred) input type.
Source§impl Into<WorldInfoType> for f64
impl Into<WorldInfoType> for f64
Source§fn into(self) -> WorldInfoType
fn into(self) -> WorldInfoType
Converts this type into the (usually inferred) input type.
Source§impl Into<WorldInfoType> for i64
impl Into<WorldInfoType> for i64
Source§fn into(self) -> WorldInfoType
fn into(self) -> WorldInfoType
Converts this type into the (usually inferred) input type.
Source§impl Into<WorldInfoType> for u64
impl Into<WorldInfoType> for u64
Source§fn into(self) -> WorldInfoType
fn into(self) -> WorldInfoType
Converts this type into the (usually inferred) input type.
Source§impl TryInto<HashMap<String, WorldInfoType>> for WorldInfoType
impl TryInto<HashMap<String, WorldInfoType>> for WorldInfoType
Source§impl TryInto<String> for WorldInfoType
impl TryInto<String> for WorldInfoType
Source§impl TryInto<Vec<WorldInfoType>> for WorldInfoType
impl TryInto<Vec<WorldInfoType>> for WorldInfoType
Auto Trait Implementations§
impl Freeze for WorldInfoType
impl RefUnwindSafe for WorldInfoType
impl Send for WorldInfoType
impl Sync for WorldInfoType
impl Unpin for WorldInfoType
impl UnwindSafe for WorldInfoType
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