pub enum ScriptValue {
Unit,
Bool(bool),
Integer(i64),
Float(f64),
String(Cow<'static, str>),
List(Vec<ScriptValue>),
Map(HashMap<String, ScriptValue>),
Reference(ReflectReference),
FunctionMut(DynamicScriptFunctionMut),
Function(DynamicScriptFunction),
Error(InteropError),
}
Expand description
An abstraction of values that can be passed to and from scripts. This allows us to re-use logic between scripting languages.
Variants§
Unit
Represents the absence of a value.
Bool(bool)
Represents a boolean value.
Integer(i64)
Represents an integer value with at most 64 bits.
Float(f64)
Represents a floating point value with at most 64 bits.
String(Cow<'static, str>)
Represents a string value.
List(Vec<ScriptValue>)
Represents a list of other things passed by value
Map(HashMap<String, ScriptValue>)
Represents a map of other things passed by value
Reference(ReflectReference)
Represents a reference to a value.
FunctionMut(DynamicScriptFunctionMut)
A dynamic script function possibly storing state. Preffer using the ScriptValue::Function
variant instead if possible.
Function(DynamicScriptFunction)
A stateless dynamic script function
Error(InteropError)
Represents any error, will be thrown when returned to a script
Implementations§
Trait Implementations§
Source§impl ArgMeta for ScriptValue
impl ArgMeta for ScriptValue
Source§fn default_value() -> Option<ScriptValue>
fn default_value() -> Option<ScriptValue>
Source§impl Clone for ScriptValue
impl Clone for ScriptValue
Source§fn clone(&self) -> ScriptValue
fn clone(&self) -> ScriptValue
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ScriptValue
impl Debug for ScriptValue
Source§impl DebugWithTypeInfo for ScriptValue
impl DebugWithTypeInfo for ScriptValue
Source§fn to_string_with_type_info(
&self,
f: &mut Formatter<'_>,
type_info_provider: Option<&dyn GetTypeInfo>,
) -> Result<(), Error>
fn to_string_with_type_info( &self, f: &mut Formatter<'_>, type_info_provider: Option<&dyn GetTypeInfo>, ) -> Result<(), Error>
Source§impl Default for ScriptValue
impl Default for ScriptValue
Source§fn default() -> ScriptValue
fn default() -> ScriptValue
Source§impl DisplayWithTypeInfo for ScriptValue
impl DisplayWithTypeInfo for ScriptValue
Source§fn display_with_type_info(
&self,
f: &mut Formatter<'_>,
type_info_provider: Option<&dyn GetTypeInfo>,
) -> Result<(), Error>
fn display_with_type_info( &self, f: &mut Formatter<'_>, type_info_provider: Option<&dyn GetTypeInfo>, ) -> Result<(), Error>
Source§impl From<&'static str> for ScriptValue
impl From<&'static str> for ScriptValue
Source§fn from(value: &'static str) -> ScriptValue
fn from(value: &'static str) -> ScriptValue
Source§impl From<()> for ScriptValue
impl From<()> for ScriptValue
Source§fn from(_: ()) -> ScriptValue
fn from(_: ()) -> ScriptValue
Source§impl From<HashMap<String, ScriptValue>> for ScriptValue
impl From<HashMap<String, ScriptValue>> for ScriptValue
Source§fn from(value: HashMap<String, ScriptValue>) -> ScriptValue
fn from(value: HashMap<String, ScriptValue>) -> ScriptValue
Source§impl From<InteropError> for ScriptValue
impl From<InteropError> for ScriptValue
Source§fn from(value: InteropError) -> ScriptValue
fn from(value: InteropError) -> ScriptValue
Source§impl From<LuaScriptValue> for ScriptValue
impl From<LuaScriptValue> for ScriptValue
Source§fn from(value: LuaScriptValue) -> ScriptValue
fn from(value: LuaScriptValue) -> ScriptValue
Source§impl<T> From<Option<T>> for ScriptValuewhere
T: Into<ScriptValue>,
impl<T> From<Option<T>> for ScriptValuewhere
T: Into<ScriptValue>,
Source§fn from(value: Option<T>) -> ScriptValue
fn from(value: Option<T>) -> ScriptValue
Source§impl From<ReflectReference> for ScriptValue
impl From<ReflectReference> for ScriptValue
Source§fn from(value: ReflectReference) -> ScriptValue
fn from(value: ReflectReference) -> ScriptValue
Source§impl<T, E> From<Result<T, E>> for ScriptValue
impl<T, E> From<Result<T, E>> for ScriptValue
Source§fn from(value: Result<T, E>) -> ScriptValue
fn from(value: Result<T, E>) -> ScriptValue
Source§impl From<ScriptValue> for LuaScriptValue
impl From<ScriptValue> for LuaScriptValue
Source§fn from(value: ScriptValue) -> LuaScriptValue
fn from(value: ScriptValue) -> LuaScriptValue
Source§impl From<String> for ScriptValue
impl From<String> for ScriptValue
Source§fn from(value: String) -> ScriptValue
fn from(value: String) -> ScriptValue
Source§impl From<Vec<ScriptValue>> for ScriptValue
impl From<Vec<ScriptValue>> for ScriptValue
Source§fn from(value: Vec<ScriptValue>) -> ScriptValue
fn from(value: Vec<ScriptValue>) -> ScriptValue
Source§impl From<bool> for ScriptValue
impl From<bool> for ScriptValue
Source§fn from(value: bool) -> ScriptValue
fn from(value: bool) -> ScriptValue
Source§impl From<f64> for ScriptValue
impl From<f64> for ScriptValue
Source§fn from(value: f64) -> ScriptValue
fn from(value: f64) -> ScriptValue
Source§impl From<i64> for ScriptValue
impl From<i64> for ScriptValue
Source§fn from(value: i64) -> ScriptValue
fn from(value: i64) -> ScriptValue
Source§impl FromDynamic for ScriptValue
impl FromDynamic for ScriptValue
Source§fn from_dynamic(dynamic: Dynamic) -> Result<ScriptValue, Box<EvalAltResult>>
fn from_dynamic(dynamic: Dynamic) -> Result<ScriptValue, Box<EvalAltResult>>
Dynamic
value into a typeSource§impl FromReflect for ScriptValue
impl FromReflect for ScriptValue
Source§fn from_reflect(reflect: &(dyn PartialReflect + 'static)) -> Option<ScriptValue>
fn from_reflect(reflect: &(dyn PartialReflect + 'static)) -> Option<ScriptValue>
Self
from a reflected value.Source§fn take_from_reflect(
reflect: Box<dyn PartialReflect>,
) -> Result<Self, Box<dyn PartialReflect>>
fn take_from_reflect( reflect: Box<dyn PartialReflect>, ) -> Result<Self, Box<dyn PartialReflect>>
Self
using,
constructing the value using from_reflect
if that fails. Read moreSource§impl FromScript for ScriptValue
impl FromScript for ScriptValue
Source§type This<'w> = ScriptValue
type This<'w> = ScriptValue
Source§fn from_script(
value: ScriptValue,
_world: WorldAccessGuard<'_>,
) -> Result<ScriptValue, InteropError>
fn from_script( value: ScriptValue, _world: WorldAccessGuard<'_>, ) -> Result<ScriptValue, InteropError>
T
from a ScriptValue
.Source§impl GetTypeDependencies for ScriptValue
impl GetTypeDependencies for ScriptValue
Source§type Underlying = ScriptValue
type Underlying = ScriptValue
Self
However some types might be facades
for other types, in which case this will be the underlying typeSource§fn register_type_dependencies(registry: &mut TypeRegistry)
fn register_type_dependencies(registry: &mut TypeRegistry)
TypeRegistry
.Source§impl GetTypeRegistration for ScriptValue
impl GetTypeRegistration for ScriptValue
Source§fn get_type_registration() -> TypeRegistration
fn get_type_registration() -> TypeRegistration
TypeRegistration
for this type.Source§fn register_type_dependencies(_registry: &mut TypeRegistry)
fn register_type_dependencies(_registry: &mut TypeRegistry)
Source§impl IntoDynamic for ScriptValue
impl IntoDynamic for ScriptValue
Source§fn into_dynamic(self) -> Result<Dynamic, Box<EvalAltResult>>
fn into_dynamic(self) -> Result<Dynamic, Box<EvalAltResult>>
Dynamic
valueSource§impl IntoScript for ScriptValue
impl IntoScript for ScriptValue
Source§fn into_script(
self,
_world: WorldAccessGuard<'_>,
) -> Result<ScriptValue, InteropError>
fn into_script( self, _world: WorldAccessGuard<'_>, ) -> Result<ScriptValue, InteropError>
ScriptValue
.Source§fn into_script_inline_error(self, world: WorldAccessGuard<'_>) -> ScriptValuewhere
Self: Sized,
fn into_script_inline_error(self, world: WorldAccessGuard<'_>) -> ScriptValuewhere
Self: Sized,
ScriptValue
, returning an error as a ScriptValue if an error occurs.Source§impl PartialEq for ScriptValue
impl PartialEq for ScriptValue
Source§impl PartialReflect for ScriptValue
impl PartialReflect for ScriptValue
Source§fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
Source§fn to_dynamic(&self) -> Box<dyn PartialReflect>
fn to_dynamic(&self) -> Box<dyn PartialReflect>
Source§fn try_apply(
&mut self,
value: &(dyn PartialReflect + 'static),
) -> Result<(), ApplyError>
fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>
Source§fn reflect_kind(&self) -> ReflectKind
fn reflect_kind(&self) -> ReflectKind
Source§fn reflect_ref(&self) -> ReflectRef<'_>
fn reflect_ref(&self) -> ReflectRef<'_>
Source§fn reflect_mut(&mut self) -> ReflectMut<'_>
fn reflect_mut(&mut self) -> ReflectMut<'_>
Source§fn reflect_owned(self: Box<ScriptValue>) -> ReflectOwned
fn reflect_owned(self: Box<ScriptValue>) -> ReflectOwned
Source§fn try_into_reflect(
self: Box<ScriptValue>,
) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>
fn try_into_reflect( self: Box<ScriptValue>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>
Source§fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>
fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>
Source§fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>
fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>
Source§fn into_partial_reflect(self: Box<ScriptValue>) -> Box<dyn PartialReflect>
fn into_partial_reflect(self: Box<ScriptValue>) -> Box<dyn PartialReflect>
Source§fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)
fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)
Source§fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)
fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)
Source§fn apply(&mut self, value: &(dyn PartialReflect + 'static))
fn apply(&mut self, value: &(dyn PartialReflect + 'static))
Source§fn clone_value(&self) -> Box<dyn PartialReflect>
fn clone_value(&self) -> Box<dyn PartialReflect>
reflect_clone
. To convert reflected values to dynamic ones, use to_dynamic
.Self
into its dynamic representation. Read moreSource§fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>
fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>
Self
using reflection. Read moreSource§fn reflect_hash(&self) -> Option<u64>
fn reflect_hash(&self) -> Option<u64>
Source§fn reflect_partial_eq(
&self,
_value: &(dyn PartialReflect + 'static),
) -> Option<bool>
fn reflect_partial_eq( &self, _value: &(dyn PartialReflect + 'static), ) -> Option<bool>
Source§fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Source§fn is_dynamic(&self) -> bool
fn is_dynamic(&self) -> bool
Source§impl Reflect for ScriptValue
impl Reflect for ScriptValue
Source§fn into_any(self: Box<ScriptValue>) -> Box<dyn Any>
fn into_any(self: Box<ScriptValue>) -> Box<dyn Any>
Box<dyn Any>
. Read moreSource§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut dyn Any
. Read moreSource§fn into_reflect(self: Box<ScriptValue>) -> Box<dyn Reflect>
fn into_reflect(self: Box<ScriptValue>) -> Box<dyn Reflect>
Source§fn as_reflect(&self) -> &(dyn Reflect + 'static)
fn as_reflect(&self) -> &(dyn Reflect + 'static)
Source§fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)
fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)
Source§impl TypePath for ScriptValue
impl TypePath for ScriptValue
Source§fn type_path() -> &'static str
fn type_path() -> &'static str
Source§fn short_type_path() -> &'static str
fn short_type_path() -> &'static str
Source§fn type_ident() -> Option<&'static str>
fn type_ident() -> Option<&'static str>
Source§fn crate_name() -> Option<&'static str>
fn crate_name() -> Option<&'static str>
Source§impl Typed for ScriptValue
impl Typed for ScriptValue
Source§impl TypedThrough for ScriptValue
impl TypedThrough for ScriptValue
Source§fn through_type_info() -> ThroughTypeInfo
fn through_type_info() -> ThroughTypeInfo
ThroughTypeInfo
for the type.Auto Trait Implementations§
impl Freeze for ScriptValue
impl !RefUnwindSafe for ScriptValue
impl Send for ScriptValue
impl Sync for ScriptValue
impl Unpin for ScriptValue
impl !UnwindSafe for ScriptValue
Blanket Implementations§
Source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
Source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
, which can then be
downcast
into Box<dyn ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
, which can then be further
downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DynamicTypePath for Twhere
T: TypePath,
impl<T> DynamicTypePath for Twhere
T: TypePath,
Source§fn reflect_type_path(&self) -> &str
fn reflect_type_path(&self) -> &str
TypePath::type_path
.Source§fn reflect_short_type_path(&self) -> &str
fn reflect_short_type_path(&self) -> &str
Source§fn reflect_type_ident(&self) -> Option<&str>
fn reflect_type_ident(&self) -> Option<&str>
TypePath::type_ident
.Source§fn reflect_crate_name(&self) -> Option<&str>
fn reflect_crate_name(&self) -> Option<&str>
TypePath::crate_name
.Source§fn reflect_module_path(&self) -> Option<&str>
fn reflect_module_path(&self) -> Option<&str>
Source§impl<T> DynamicTyped for Twhere
T: Typed,
impl<T> DynamicTyped for Twhere
T: Typed,
Source§fn reflect_type_info(&self) -> &'static TypeInfo
fn reflect_type_info(&self) -> &'static TypeInfo
Typed::type_info
.Source§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
Source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates Self
using default()
.
Source§impl<T> GetPath for T
impl<T> GetPath for T
Source§fn reflect_path<'p>(
&self,
path: impl ReflectPath<'p>,
) -> Result<&(dyn PartialReflect + 'static), ReflectPathError<'p>>
fn reflect_path<'p>( &self, path: impl ReflectPath<'p>, ) -> Result<&(dyn PartialReflect + 'static), ReflectPathError<'p>>
path
. Read moreSource§fn reflect_path_mut<'p>(
&mut self,
path: impl ReflectPath<'p>,
) -> Result<&mut (dyn PartialReflect + 'static), ReflectPathError<'p>>
fn reflect_path_mut<'p>( &mut self, path: impl ReflectPath<'p>, ) -> Result<&mut (dyn PartialReflect + 'static), ReflectPathError<'p>>
path
. Read moreSource§fn path<'p, T>(
&self,
path: impl ReflectPath<'p>,
) -> Result<&T, ReflectPathError<'p>>where
T: Reflect,
fn path<'p, T>(
&self,
path: impl ReflectPath<'p>,
) -> Result<&T, ReflectPathError<'p>>where
T: Reflect,
path
. Read moreSource§fn path_mut<'p, T>(
&mut self,
path: impl ReflectPath<'p>,
) -> Result<&mut T, ReflectPathError<'p>>where
T: Reflect,
fn path_mut<'p, T>(
&mut self,
path: impl ReflectPath<'p>,
) -> Result<&mut T, ReflectPathError<'p>>where
T: Reflect,
path
. Read moreSource§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
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> ⓘ
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> ⓘ
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> IntoNamespace for Twhere
T: 'static + ?Sized,
impl<T> IntoNamespace for Twhere
T: 'static + ?Sized,
Source§fn into_namespace() -> Namespace
fn into_namespace() -> Namespace
Namespace
Source§impl<T> PartialReflectExt for Twhere
T: PartialReflect + ?Sized,
impl<T> PartialReflectExt for Twhere
T: PartialReflect + ?Sized,
Source§fn from_reflect_or_clone(
reflect: &(dyn PartialReflect + 'static),
world: WorldAccessGuard<'_>,
) -> Result<Box<dyn PartialReflect>, InteropError>
fn from_reflect_or_clone( reflect: &(dyn PartialReflect + 'static), world: WorldAccessGuard<'_>, ) -> Result<Box<dyn PartialReflect>, InteropError>
Try creating an owned partial reflect from a reference. Will try using ReflectFromReflect
first, and if that fails, will clone the value using PartialReflect::clone_value
.
Source§fn is_type(&self, crate_name: Option<&str>, type_ident: &str) -> bool
fn is_type(&self, crate_name: Option<&str>, type_ident: &str) -> bool
Source§fn expect_type(
&self,
crate_name: Option<&str>,
type_ident: &str,
) -> Result<(), InteropError>
fn expect_type( &self, crate_name: Option<&str>, type_ident: &str, ) -> Result<(), InteropError>
PartialReflectExt::is_type
but returns an appropriate error if the type is not the expected one.Source§fn as_option(
&self,
) -> Result<Option<&(dyn PartialReflect + 'static)>, InteropError>
fn as_option( &self, ) -> Result<Option<&(dyn PartialReflect + 'static)>, InteropError>
Source§fn as_option_mut(
&mut self,
) -> Result<Option<&mut (dyn PartialReflect + 'static)>, InteropError>
fn as_option_mut( &mut self, ) -> Result<Option<&mut (dyn PartialReflect + 'static)>, InteropError>
PartialReflectExt::as_option
but for mutable references.Source§fn as_list(
&self,
) -> Result<impl Iterator<Item = &(dyn PartialReflect + 'static)>, InteropError>
fn as_list( &self, ) -> Result<impl Iterator<Item = &(dyn PartialReflect + 'static)>, InteropError>
Source§fn set_as_list<F>(
&mut self,
other: Box<dyn PartialReflect>,
apply: F,
) -> Result<(), InteropError>where
F: Fn(&mut (dyn PartialReflect + 'static), &(dyn PartialReflect + 'static)) -> Result<(), InteropError>,
fn set_as_list<F>(
&mut self,
other: Box<dyn PartialReflect>,
apply: F,
) -> Result<(), InteropError>where
F: Fn(&mut (dyn PartialReflect + 'static), &(dyn PartialReflect + 'static)) -> Result<(), InteropError>,
Source§fn as_usize(&self) -> Result<usize, InteropError>
fn as_usize(&self) -> Result<usize, InteropError>
Source§fn try_insert_boxed(
&mut self,
key: Box<dyn PartialReflect>,
value: Box<dyn PartialReflect>,
) -> Result<(), InteropError>
fn try_insert_boxed( &mut self, key: Box<dyn PartialReflect>, value: Box<dyn PartialReflect>, ) -> Result<(), InteropError>
Source§fn try_push_boxed(
&mut self,
value: Box<dyn PartialReflect>,
) -> Result<(), InteropError>
fn try_push_boxed( &mut self, value: Box<dyn PartialReflect>, ) -> Result<(), InteropError>
end
of the container.
For lists, this is the length of the list.
For sets, this will simply insert the value into the set.
For maps, there is no natural end
, so the push will error out