Skip to main content

PartialReflect

Trait PartialReflect 

pub trait PartialReflect:
    DynamicTypePath
    + Send
    + Sync
    + 'static {
Show 20 methods // Required methods fn get_represented_type_info(&self) -> Option<&'static TypeInfo>; fn into_partial_reflect(self: Box<Self>) -> Box<dyn PartialReflect>; fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static); fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static); fn try_into_reflect( self: Box<Self>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>; fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>; fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>; fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>; fn reflect_ref(&self) -> ReflectRef<'_>; fn reflect_mut(&mut self) -> ReflectMut<'_>; fn reflect_owned(self: Box<Self>) -> ReflectOwned; // Provided methods fn apply(&mut self, value: &(dyn PartialReflect + 'static)) { ... } fn reflect_kind(&self) -> ReflectKind { ... } fn to_dynamic(&self) -> Box<dyn PartialReflect> { ... } fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError> { ... } fn reflect_clone_and_take<T>(&self) -> Result<T, ReflectCloneError> where T: 'static, Self: Sized + TypePath { ... } fn reflect_hash(&self) -> Option<u64> { ... } fn reflect_partial_eq( &self, _value: &(dyn PartialReflect + 'static), ) -> Option<bool> { ... } fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error> { ... } fn is_dynamic(&self) -> bool { ... }
}
Expand description

The foundational trait of bevy_reflect, used for accessing and modifying data dynamically.

This is a supertrait of Reflect, meaning any type which implements Reflect implements PartialReflect by definition.

It’s recommended to use the derive macro for Reflect rather than manually implementing this trait. Doing so will automatically implement this trait as well as many other useful traits for reflection, including one of the appropriate subtraits: Struct, TupleStruct or Enum.

See the crate-level documentation to see how this trait and its subtraits can be used.

Required Methods§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

Returns the TypeInfo of the type represented by this value.

For most types, this will simply return their own TypeInfo. However, for dynamic types, such as DynamicStruct or DynamicList, this will return the type they represent (or None if they don’t represent any particular type).

This method is great if you have an instance of a type or a dyn Reflect, and want to access its TypeInfo. However, if this method is to be called frequently, consider using TypeRegistry::get_type_info as it can be more performant for such use cases.

fn into_partial_reflect(self: Box<Self>) -> Box<dyn PartialReflect>

Casts this type to a boxed, reflected value.

This is useful for coercing trait objects.

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

Casts this type to a reflected value.

This is useful for coercing trait objects.

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

Casts this type to a mutable, reflected value.

This is useful for coercing trait objects.

fn try_into_reflect( self: Box<Self>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

Attempts to cast this type to a boxed, fully-reflected value.

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

Attempts to cast this type to a fully-reflected value.

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

Attempts to cast this type to a mutable, fully-reflected value.

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

Tries to apply a reflected value to this value.

Functions the same as the apply function but returns an error instead of panicking.

§Handling Errors

This function may leave self in a partially mutated state if a error was encountered on the way. consider maintaining a cloned instance of this data you can switch to if a error is encountered.

fn reflect_ref(&self) -> ReflectRef<'_>

Returns an immutable enumeration of “kinds” of type.

See ReflectRef.

fn reflect_mut(&mut self) -> ReflectMut<'_>

Returns a mutable enumeration of “kinds” of type.

See ReflectMut.

fn reflect_owned(self: Box<Self>) -> ReflectOwned

Returns an owned enumeration of “kinds” of type.

See ReflectOwned.

Provided Methods§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

Applies a reflected value to this value.

If Self implements a reflection subtrait, then the semantics of this method are as follows:

  • If Self is a Struct, then the value of each named field of value is applied to the corresponding named field of self. Fields which are not present in both structs are ignored.
  • If Self is a TupleStruct or Tuple, then the value of each numbered field is applied to the corresponding numbered field of self. Fields which are not present in both values are ignored.
  • If Self is an Enum, then the variant of self is updated to match the variant of value. The corresponding fields of that variant are applied from value onto self. Fields which are not present in both values are ignored.
  • If Self is a List or Array, then each element of value is applied to the corresponding element of self. Up to self.len() items are applied, and excess elements in value are appended to self.
  • If Self is a Map, then for each key in value, the associated value is applied to the value associated with the same key in self. Keys which are not present in self are inserted, and keys from self which are not present in value are removed.
  • If Self is a Set, then each element of value is applied to the corresponding element of Self. If an element of value does not exist in Self then it is cloned and inserted. If an element from self is not present in value then it is removed.
  • If Self is none of these, then value is downcast to Self, cloned, and assigned to self.

Note that Reflect must be implemented manually for Lists, Maps, and Sets in order to achieve the correct semantics, as derived implementations will have the semantics for Struct, TupleStruct, Enum or none of the above depending on the kind of type. For lists, maps, and sets, use the list_apply, map_apply, and set_apply helper functions when implementing this method.

§Panics

Derived implementations of this method will panic:

  • If the type of value is not of the same kind as Self (e.g. if Self is a List, while value is a Struct).
  • If Self is any complex type and the corresponding fields or elements of self and value are not of the same type.
  • If Self is an opaque type and value cannot be downcast to Self

fn reflect_kind(&self) -> ReflectKind

Returns a zero-sized enumeration of “kinds” of type.

See ReflectKind.

fn to_dynamic(&self) -> Box<dyn PartialReflect>

Converts this reflected value into its dynamic representation based on its kind.

For example, a List type will internally invoke List::to_dynamic_list, returning DynamicList. A Struct type will invoke Struct::to_dynamic_struct, returning DynamicStruct. And so on.

If the kind is opaque, then the value will attempt to be cloned directly via reflect_clone, since opaque types do not have any standard dynamic representation.

To attempt to clone the value directly such that it returns a concrete instance of this type, use reflect_clone.

§Panics

This method will panic if the kind is opaque and the call to reflect_clone fails.

§Example
let value = (1, true, 3.14);
let dynamic_value = value.to_dynamic();
assert!(dynamic_value.is_dynamic())

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

Attempts to clone Self using reflection.

Unlike to_dynamic, which generally returns a dynamic representation of Self, this method attempts create a clone of Self directly, if possible.

If the clone cannot be performed, an appropriate ReflectCloneError is returned.

§Example
let value = (1, true, 3.14);
let cloned = value.reflect_clone().unwrap();
assert!(cloned.is::<(i32, bool, f64)>())

fn reflect_clone_and_take<T>(&self) -> Result<T, ReflectCloneError>
where T: 'static, Self: Sized + TypePath,

For a type implementing PartialReflect, combines reflect_clone and take in a useful fashion, automatically constructing an appropriate ReflectCloneError if the downcast fails.

This is an associated function, rather than a method, because methods with generic types prevent dyn-compatibility.

fn reflect_hash(&self) -> Option<u64>

Returns a hash of the value (which includes the type).

If the underlying type does not support hashing, returns None.

fn reflect_partial_eq( &self, _value: &(dyn PartialReflect + 'static), ) -> Option<bool>

Returns a “partial equality” comparison result.

If the underlying type does not support equality testing, returns None.

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

Debug formatter for the value.

Any value that is not an implementor of other Reflect subtraits (e.g. List, Map), will default to the format: "Reflect(type_path)", where type_path is the type path of the underlying type.

fn is_dynamic(&self) -> bool

Indicates whether or not this type is a dynamic type.

Dynamic types include the ones built-in to this [crate], such as DynamicStruct, DynamicList, and DynamicTuple. However, they may be custom types used as proxies for other types or to facilitate scripting capabilities.

By default, this method will return false.

Implementations§

§

impl dyn PartialReflect

pub fn represents<T>(&self) -> bool
where T: Reflect + TypePath,

Returns true if the underlying value represents a value of type T, or false otherwise.

Read is for more information on underlying values and represented types.

pub fn try_downcast<T>( self: Box<dyn PartialReflect>, ) -> Result<Box<T>, Box<dyn PartialReflect>>
where T: Any,

Downcasts the value to type T, consuming the trait object.

If the underlying value does not implement Reflect or is not of type T, returns Err(self).

For remote types, T should be the type itself rather than the wrapper type.

pub fn try_take<T>( self: Box<dyn PartialReflect>, ) -> Result<T, Box<dyn PartialReflect>>
where T: Any,

Downcasts the value to type T, unboxing and consuming the trait object.

If the underlying value does not implement Reflect or is not of type T, returns Err(self).

For remote types, T should be the type itself rather than the wrapper type.

pub fn try_downcast_ref<T>(&self) -> Option<&T>
where T: Any,

Downcasts the value to type T by reference.

If the underlying value does not implement Reflect or is not of type T, returns None.

For remote types, T should be the type itself rather than the wrapper type.

pub fn try_downcast_mut<T>(&mut self) -> Option<&mut T>
where T: Any,

Downcasts the value to type T by mutable reference.

If the underlying value does not implement Reflect or is not of type T, returns None.

For remote types, T should be the type itself rather than the wrapper type.

Trait Implementations§

§

impl Debug for dyn PartialReflect

§

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

Formats the value using the given formatter. Read more
§

impl TypePath for dyn PartialReflect

§

fn type_path() -> &'static str

Returns the fully qualified path of the underlying type. Read more
§

fn short_type_path() -> &'static str

Returns a short, pretty-print enabled path to the type. Read more
§

fn type_ident() -> Option<&'static str>

Returns the name of the type, or None if it is anonymous. Read more
§

fn crate_name() -> Option<&'static str>

Returns the name of the crate the type is in, or None if it is anonymous. Read more
§

fn module_path() -> Option<&'static str>

Returns the path to the module the type is in, or None if it is anonymous. Read more

Implementations on Foreign Types§

§

impl PartialReflect for &'static str

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<&'static str>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<&'static str>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<&'static str>) -> ReflectOwned

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

impl PartialReflect for &'static Location<'static>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect( self: Box<&'static Location<'static>>, ) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<&'static Location<'static>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<&'static Location<'static>>) -> ReflectOwned

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

impl PartialReflect for Cow<'static, str>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<Cow<'static, str>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<Cow<'static, str>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Cow<'static, str>>) -> ReflectOwned

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

impl PartialReflect for SocketAddr

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<SocketAddr>) -> ReflectOwned

§

fn try_into_reflect( self: Box<SocketAddr>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<SocketAddr>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for bool

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<bool>) -> ReflectOwned

§

fn try_into_reflect( self: Box<bool>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<bool>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for char

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<char>) -> ReflectOwned

§

fn try_into_reflect( self: Box<char>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<char>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for f32

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<f32>) -> ReflectOwned

§

fn try_into_reflect( self: Box<f32>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<f32>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for f64

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<f64>) -> ReflectOwned

§

fn try_into_reflect( self: Box<f64>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<f64>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for i8

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<i8>) -> ReflectOwned

§

fn try_into_reflect( self: Box<i8>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<i8>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for i16

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<i16>) -> ReflectOwned

§

fn try_into_reflect( self: Box<i16>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<i16>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for i32

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<i32>) -> ReflectOwned

§

fn try_into_reflect( self: Box<i32>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<i32>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for i64

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<i64>) -> ReflectOwned

§

fn try_into_reflect( self: Box<i64>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<i64>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for i128

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<i128>) -> ReflectOwned

§

fn try_into_reflect( self: Box<i128>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<i128>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for isize

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<isize>) -> ReflectOwned

§

fn try_into_reflect( self: Box<isize>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<isize>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for u8

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<u8>) -> ReflectOwned

§

fn try_into_reflect( self: Box<u8>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<u8>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for u16

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<u16>) -> ReflectOwned

§

fn try_into_reflect( self: Box<u16>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<u16>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for u32

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<u32>) -> ReflectOwned

§

fn try_into_reflect( self: Box<u32>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<u32>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for u64

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<u64>) -> ReflectOwned

§

fn try_into_reflect( self: Box<u64>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<u64>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for u128

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<u128>) -> ReflectOwned

§

fn try_into_reflect( self: Box<u128>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<u128>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for ()

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<()>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<()>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<()>) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for usize

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<usize>) -> ReflectOwned

§

fn try_into_reflect( self: Box<usize>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<usize>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for String

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<String>) -> ReflectOwned

§

fn try_into_reflect( self: Box<String>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<String>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for TypeId

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<TypeId>) -> ReflectOwned

§

fn try_into_reflect( self: Box<TypeId>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<TypeId>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for NonZero<i8>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<NonZero<i8>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<NonZero<i8>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<NonZero<i8>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for NonZero<i16>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<NonZero<i16>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<NonZero<i16>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<NonZero<i16>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for NonZero<i32>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<NonZero<i32>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<NonZero<i32>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<NonZero<i32>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for NonZero<i64>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<NonZero<i64>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<NonZero<i64>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<NonZero<i64>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for NonZero<i128>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<NonZero<i128>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<NonZero<i128>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<NonZero<i128>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for NonZero<isize>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<NonZero<isize>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<NonZero<isize>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<NonZero<isize>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for NonZero<u8>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<NonZero<u8>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<NonZero<u8>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<NonZero<u8>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for NonZero<u16>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<NonZero<u16>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<NonZero<u16>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<NonZero<u16>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for NonZero<u32>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<NonZero<u32>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<NonZero<u32>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<NonZero<u32>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for NonZero<u64>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<NonZero<u64>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<NonZero<u64>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<NonZero<u64>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for NonZero<u128>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<NonZero<u128>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<NonZero<u128>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<NonZero<u128>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for NonZero<usize>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<NonZero<usize>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<NonZero<usize>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<NonZero<usize>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for RangeFull

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<RangeFull>) -> ReflectOwned

§

fn try_into_reflect( self: Box<RangeFull>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<RangeFull>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for AtomicBool

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<AtomicBool>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<AtomicBool>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<AtomicBool>) -> ReflectOwned

§

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

§

impl PartialReflect for AtomicI8

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<AtomicI8>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<AtomicI8>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<AtomicI8>) -> ReflectOwned

§

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

§

impl PartialReflect for AtomicI16

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<AtomicI16>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<AtomicI16>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<AtomicI16>) -> ReflectOwned

§

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

§

impl PartialReflect for AtomicI32

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<AtomicI32>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<AtomicI32>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<AtomicI32>) -> ReflectOwned

§

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

§

impl PartialReflect for AtomicI64

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<AtomicI64>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<AtomicI64>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<AtomicI64>) -> ReflectOwned

§

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

§

impl PartialReflect for AtomicIsize

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<AtomicIsize>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<AtomicIsize>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<AtomicIsize>) -> ReflectOwned

§

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

§

impl PartialReflect for AtomicU8

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<AtomicU8>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<AtomicU8>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<AtomicU8>) -> ReflectOwned

§

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

§

impl PartialReflect for AtomicU16

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<AtomicU16>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<AtomicU16>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<AtomicU16>) -> ReflectOwned

§

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

§

impl PartialReflect for AtomicU32

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<AtomicU32>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<AtomicU32>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<AtomicU32>) -> ReflectOwned

§

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

§

impl PartialReflect for AtomicU64

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<AtomicU64>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<AtomicU64>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<AtomicU64>) -> ReflectOwned

§

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

§

impl PartialReflect for AtomicUsize

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<AtomicUsize>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<AtomicUsize>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<AtomicUsize>) -> ReflectOwned

§

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

§

impl PartialReflect for Duration

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Duration>) -> ReflectOwned

§

fn try_into_reflect( self: Box<Duration>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<Duration>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for CuDuration

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<CuDuration>) -> ReflectOwned

§

fn try_into_reflect( self: Box<CuDuration>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<CuDuration>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for CuTimeRange

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<CuTimeRange>) -> ReflectOwned

§

fn try_into_reflect( self: Box<CuTimeRange>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<CuTimeRange>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for Instant

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Instant>) -> ReflectOwned

§

fn try_into_reflect( self: Box<Instant>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<Instant>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

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

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for OptionCuTime

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<OptionCuTime>) -> ReflectOwned

§

fn try_into_reflect( self: Box<OptionCuTime>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<OptionCuTime>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for PartialCuTimeRange

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<PartialCuTimeRange>) -> ReflectOwned

§

fn try_into_reflect( self: Box<PartialCuTimeRange>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect( self: Box<PartialCuTimeRange>, ) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl PartialReflect for Tov

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn try_apply( &mut self, __value_param: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Tov>) -> ReflectOwned

§

fn try_into_reflect( self: Box<Tov>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<Tov>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<A> PartialReflect for (A,)
where A: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<(A,)>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<(A,)>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<(A,)>) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<A, B> PartialReflect for (A, B)
where A: Reflect + MaybeTyped + TypePath + GetTypeRegistration, B: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<(A, B)>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<(A, B)>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<(A, B)>) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<A, B, C> PartialReflect for (A, B, C)
where A: Reflect + MaybeTyped + TypePath + GetTypeRegistration, B: Reflect + MaybeTyped + TypePath + GetTypeRegistration, C: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<(A, B, C)>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<(A, B, C)>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<(A, B, C)>) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<A, B, C, D> PartialReflect for (A, B, C, D)
where A: Reflect + MaybeTyped + TypePath + GetTypeRegistration, B: Reflect + MaybeTyped + TypePath + GetTypeRegistration, C: Reflect + MaybeTyped + TypePath + GetTypeRegistration, D: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<(A, B, C, D)>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<(A, B, C, D)>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<(A, B, C, D)>) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<A, B, C, D, E> PartialReflect for (A, B, C, D, E)
where A: Reflect + MaybeTyped + TypePath + GetTypeRegistration, B: Reflect + MaybeTyped + TypePath + GetTypeRegistration, C: Reflect + MaybeTyped + TypePath + GetTypeRegistration, D: Reflect + MaybeTyped + TypePath + GetTypeRegistration, E: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<(A, B, C, D, E)>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<(A, B, C, D, E)>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<(A, B, C, D, E)>) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<A, B, C, D, E, F> PartialReflect for (A, B, C, D, E, F)
where A: Reflect + MaybeTyped + TypePath + GetTypeRegistration, B: Reflect + MaybeTyped + TypePath + GetTypeRegistration, C: Reflect + MaybeTyped + TypePath + GetTypeRegistration, D: Reflect + MaybeTyped + TypePath + GetTypeRegistration, E: Reflect + MaybeTyped + TypePath + GetTypeRegistration, F: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect( self: Box<(A, B, C, D, E, F)>, ) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<(A, B, C, D, E, F)>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<(A, B, C, D, E, F)>) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<A, B, C, D, E, F, G> PartialReflect for (A, B, C, D, E, F, G)
where A: Reflect + MaybeTyped + TypePath + GetTypeRegistration, B: Reflect + MaybeTyped + TypePath + GetTypeRegistration, C: Reflect + MaybeTyped + TypePath + GetTypeRegistration, D: Reflect + MaybeTyped + TypePath + GetTypeRegistration, E: Reflect + MaybeTyped + TypePath + GetTypeRegistration, F: Reflect + MaybeTyped + TypePath + GetTypeRegistration, G: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect( self: Box<(A, B, C, D, E, F, G)>, ) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<(A, B, C, D, E, F, G)>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<(A, B, C, D, E, F, G)>) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<A, B, C, D, E, F, G, H> PartialReflect for (A, B, C, D, E, F, G, H)
where A: Reflect + MaybeTyped + TypePath + GetTypeRegistration, B: Reflect + MaybeTyped + TypePath + GetTypeRegistration, C: Reflect + MaybeTyped + TypePath + GetTypeRegistration, D: Reflect + MaybeTyped + TypePath + GetTypeRegistration, E: Reflect + MaybeTyped + TypePath + GetTypeRegistration, F: Reflect + MaybeTyped + TypePath + GetTypeRegistration, G: Reflect + MaybeTyped + TypePath + GetTypeRegistration, H: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect( self: Box<(A, B, C, D, E, F, G, H)>, ) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<(A, B, C, D, E, F, G, H)>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<(A, B, C, D, E, F, G, H)>) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<A, B, C, D, E, F, G, H, I> PartialReflect for (A, B, C, D, E, F, G, H, I)
where A: Reflect + MaybeTyped + TypePath + GetTypeRegistration, B: Reflect + MaybeTyped + TypePath + GetTypeRegistration, C: Reflect + MaybeTyped + TypePath + GetTypeRegistration, D: Reflect + MaybeTyped + TypePath + GetTypeRegistration, E: Reflect + MaybeTyped + TypePath + GetTypeRegistration, F: Reflect + MaybeTyped + TypePath + GetTypeRegistration, G: Reflect + MaybeTyped + TypePath + GetTypeRegistration, H: Reflect + MaybeTyped + TypePath + GetTypeRegistration, I: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect( self: Box<(A, B, C, D, E, F, G, H, I)>, ) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<(A, B, C, D, E, F, G, H, I)>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<(A, B, C, D, E, F, G, H, I)>) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<A, B, C, D, E, F, G, H, I, J> PartialReflect for (A, B, C, D, E, F, G, H, I, J)
where A: Reflect + MaybeTyped + TypePath + GetTypeRegistration, B: Reflect + MaybeTyped + TypePath + GetTypeRegistration, C: Reflect + MaybeTyped + TypePath + GetTypeRegistration, D: Reflect + MaybeTyped + TypePath + GetTypeRegistration, E: Reflect + MaybeTyped + TypePath + GetTypeRegistration, F: Reflect + MaybeTyped + TypePath + GetTypeRegistration, G: Reflect + MaybeTyped + TypePath + GetTypeRegistration, H: Reflect + MaybeTyped + TypePath + GetTypeRegistration, I: Reflect + MaybeTyped + TypePath + GetTypeRegistration, J: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect( self: Box<(A, B, C, D, E, F, G, H, I, J)>, ) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<(A, B, C, D, E, F, G, H, I, J)>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<(A, B, C, D, E, F, G, H, I, J)>) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<A, B, C, D, E, F, G, H, I, J, K> PartialReflect for (A, B, C, D, E, F, G, H, I, J, K)
where A: Reflect + MaybeTyped + TypePath + GetTypeRegistration, B: Reflect + MaybeTyped + TypePath + GetTypeRegistration, C: Reflect + MaybeTyped + TypePath + GetTypeRegistration, D: Reflect + MaybeTyped + TypePath + GetTypeRegistration, E: Reflect + MaybeTyped + TypePath + GetTypeRegistration, F: Reflect + MaybeTyped + TypePath + GetTypeRegistration, G: Reflect + MaybeTyped + TypePath + GetTypeRegistration, H: Reflect + MaybeTyped + TypePath + GetTypeRegistration, I: Reflect + MaybeTyped + TypePath + GetTypeRegistration, J: Reflect + MaybeTyped + TypePath + GetTypeRegistration, K: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect( self: Box<(A, B, C, D, E, F, G, H, I, J, K)>, ) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<(A, B, C, D, E, F, G, H, I, J, K)>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<(A, B, C, D, E, F, G, H, I, J, K)>) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<A, B, C, D, E, F, G, H, I, J, K, L> PartialReflect for (A, B, C, D, E, F, G, H, I, J, K, L)
where A: Reflect + MaybeTyped + TypePath + GetTypeRegistration, B: Reflect + MaybeTyped + TypePath + GetTypeRegistration, C: Reflect + MaybeTyped + TypePath + GetTypeRegistration, D: Reflect + MaybeTyped + TypePath + GetTypeRegistration, E: Reflect + MaybeTyped + TypePath + GetTypeRegistration, F: Reflect + MaybeTyped + TypePath + GetTypeRegistration, G: Reflect + MaybeTyped + TypePath + GetTypeRegistration, H: Reflect + MaybeTyped + TypePath + GetTypeRegistration, I: Reflect + MaybeTyped + TypePath + GetTypeRegistration, J: Reflect + MaybeTyped + TypePath + GetTypeRegistration, K: Reflect + MaybeTyped + TypePath + GetTypeRegistration, L: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect( self: Box<(A, B, C, D, E, F, G, H, I, J, K, L)>, ) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<(A, B, C, D, E, F, G, H, I, J, K, L)>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned( self: Box<(A, B, C, D, E, F, G, H, I, J, K, L)>, ) -> ReflectOwned

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<K, V> PartialReflect for BTreeMap<K, V>
where K: FromReflect + MaybeTyped + TypePath + GetTypeRegistration + Eq + Ord, V: FromReflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<BTreeMap<K, V>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<BTreeMap<K, V>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<BTreeMap<K, V>>) -> ReflectOwned

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

impl<K, V, S> PartialReflect for HashMap<K, V, S>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<HashMap<K, V, S>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<HashMap<K, V, S>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<HashMap<K, V, S>>) -> ReflectOwned

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

impl<T> PartialReflect for Cow<'static, [T]>
where T: FromReflect + MaybeTyped + Clone + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<Cow<'static, [T]>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<Cow<'static, [T]>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Cow<'static, [T]>>) -> ReflectOwned

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

impl<T> PartialReflect for Bound<T>
where T: Clone + Send + Sync + TypePath, Bound<T>: Any + Send + Sync,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Bound<T>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<Bound<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<Bound<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T> PartialReflect for Option<T>
where Option<T>: Any + Send + Sync, T: TypePath + FromReflect + MaybeTyped + RegisterForReflection,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn try_apply( &mut self, __value_param: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Option<T>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<Option<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<Option<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T> PartialReflect for BinaryHeap<T>
where T: Clone + TypePath, BinaryHeap<T>: Any + Send + Sync,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<BinaryHeap<T>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<BinaryHeap<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<BinaryHeap<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T> PartialReflect for BTreeSet<T>
where T: Ord + Eq + Clone + Send + Sync + TypePath, BTreeSet<T>: Any + Send + Sync,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<BTreeSet<T>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<BTreeSet<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<BTreeSet<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T> PartialReflect for VecDeque<T>
where T: FromReflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<VecDeque<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<VecDeque<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<VecDeque<T>>) -> ReflectOwned

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

impl<T> PartialReflect for Arc<T>
where T: Send + Sync + TypePath + ?Sized, Arc<T>: Any + Send + Sync,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Arc<T>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<Arc<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<Arc<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T> PartialReflect for Vec<T>
where T: FromReflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<Vec<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<Vec<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Vec<T>>) -> ReflectOwned

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

impl<T> PartialReflect for Saturating<T>
where T: Clone + Send + Sync + TypePath, Saturating<T>: Any + Send + Sync,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Saturating<T>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<Saturating<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<Saturating<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T> PartialReflect for Wrapping<T>
where T: Clone + Send + Sync + TypePath, Wrapping<T>: Any + Send + Sync,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Wrapping<T>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<Wrapping<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<Wrapping<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T> PartialReflect for Range<T>
where T: Clone + Send + Sync + TypePath, Range<T>: Any + Send + Sync,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Range<T>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<Range<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<Range<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T> PartialReflect for RangeFrom<T>
where T: Clone + Send + Sync + TypePath, RangeFrom<T>: Any + Send + Sync,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<RangeFrom<T>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<RangeFrom<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<RangeFrom<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T> PartialReflect for RangeInclusive<T>
where T: Clone + Send + Sync + TypePath, RangeInclusive<T>: Any + Send + Sync,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<RangeInclusive<T>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<RangeInclusive<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<RangeInclusive<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T> PartialReflect for RangeTo<T>
where T: Clone + Send + Sync + TypePath, RangeTo<T>: Any + Send + Sync,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<RangeTo<T>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<RangeTo<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<RangeTo<T>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T> PartialReflect for RangeToInclusive<T>
where T: Clone + Send + Sync + TypePath, RangeToInclusive<T>: Any + Send + Sync,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn to_dynamic(&self) -> Box<dyn PartialReflect>

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<RangeToInclusive<T>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<RangeToInclusive<T>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect( self: Box<RangeToInclusive<T>>, ) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T, E> PartialReflect for Result<T, E>
where Result<T, E>: Any + Send + Sync, T: TypePath + FromReflect + MaybeTyped + RegisterForReflection, E: TypePath + FromReflect + MaybeTyped + RegisterForReflection,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn try_apply( &mut self, __value_param: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<Result<T, E>>) -> ReflectOwned

§

fn try_into_reflect( self: Box<Result<T, E>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn into_partial_reflect(self: Box<Result<T, E>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

impl<T, const N: usize> PartialReflect for [T; N]
where T: Reflect + MaybeTyped + TypePath + GetTypeRegistration,

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<[T; N]>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<[T; N]>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<[T; N]>) -> ReflectOwned

§

fn reflect_hash(&self) -> Option<u64>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

impl<V, S> PartialReflect for HashSet<V, S>

§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

§

fn into_partial_reflect(self: Box<HashSet<V, S>>) -> Box<dyn PartialReflect>

§

fn as_partial_reflect(&self) -> &(dyn PartialReflect + 'static)

§

fn as_partial_reflect_mut(&mut self) -> &mut (dyn PartialReflect + 'static)

§

fn try_into_reflect( self: Box<HashSet<V, S>>, ) -> Result<Box<dyn Reflect>, Box<dyn PartialReflect>>

§

fn try_as_reflect(&self) -> Option<&(dyn Reflect + 'static)>

§

fn try_as_reflect_mut(&mut self) -> Option<&mut (dyn Reflect + 'static)>

§

fn apply(&mut self, value: &(dyn PartialReflect + 'static))

§

fn try_apply( &mut self, value: &(dyn PartialReflect + 'static), ) -> Result<(), ApplyError>

§

fn reflect_kind(&self) -> ReflectKind

§

fn reflect_ref(&self) -> ReflectRef<'_>

§

fn reflect_mut(&mut self) -> ReflectMut<'_>

§

fn reflect_owned(self: Box<HashSet<V, S>>) -> ReflectOwned

§

fn reflect_clone(&self) -> Result<Box<dyn Reflect>, ReflectCloneError>

§

fn reflect_partial_eq( &self, value: &(dyn PartialReflect + 'static), ) -> Option<bool>

Implementors§