pub struct ReflectSerializer<'a, P = ()> { /* private fields */ }Expand description
A general purpose serializer for reflected types.
This is the serializer counterpart to ReflectDeserializer.
See TypedReflectSerializer for a serializer that serializes a known type.
§Output
This serializer will output a map with a single entry, where the key is the full type path of the reflected type and the value is the serialized data.
If you want to override serialization for specific values, you can pass in
a reference to a ReflectSerializerProcessor which will take priority
over all other serialization methods - see with_processor.
§Example
#[derive(Reflect, PartialEq, Debug)]
#[type_path = "my_crate"]
struct MyStruct {
value: i32
}
let mut registry = TypeRegistry::default();
registry.register::<MyStruct>();
let input = MyStruct { value: 123 };
let reflect_serializer = ReflectSerializer::new(&input, ®istry);
let output = ron::to_string(&reflect_serializer).unwrap();
assert_eq!(output, r#"{"my_crate::MyStruct":(value:123)}"#);Implementations§
Source§impl<'a> ReflectSerializer<'a>
impl<'a> ReflectSerializer<'a>
Sourcepub fn new(
value: &'a (dyn PartialReflect + 'static),
registry: &'a TypeRegistry,
) -> ReflectSerializer<'a>
pub fn new( value: &'a (dyn PartialReflect + 'static), registry: &'a TypeRegistry, ) -> ReflectSerializer<'a>
Creates a serializer with no processor.
If you want to add custom logic for serializing certain values, use
with_processor.
Source§impl<'a, P> ReflectSerializer<'a, P>where
P: ReflectSerializerProcessor,
impl<'a, P> ReflectSerializer<'a, P>where
P: ReflectSerializerProcessor,
Sourcepub fn with_processor(
value: &'a (dyn PartialReflect + 'static),
registry: &'a TypeRegistry,
processor: &'a P,
) -> ReflectSerializer<'a, P>
pub fn with_processor( value: &'a (dyn PartialReflect + 'static), registry: &'a TypeRegistry, processor: &'a P, ) -> ReflectSerializer<'a, P>
Creates a serializer with a processor.
If you do not need any custom logic for handling certain values, use
new.
Trait Implementations§
Source§impl<P> Serialize for ReflectSerializer<'_, P>where
P: ReflectSerializerProcessor,
impl<P> Serialize for ReflectSerializer<'_, P>where
P: ReflectSerializerProcessor,
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Auto Trait Implementations§
impl<'a, P> Freeze for ReflectSerializer<'a, P>
impl<'a, P = ()> !RefUnwindSafe for ReflectSerializer<'a, P>
impl<'a, P> Send for ReflectSerializer<'a, P>where
P: Sync,
impl<'a, P> Sync for ReflectSerializer<'a, P>where
P: Sync,
impl<'a, P> Unpin for ReflectSerializer<'a, P>
impl<'a, P = ()> !UnwindSafe for ReflectSerializer<'a, P>
Blanket Implementations§
Source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
Source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
T ShaderType for self. When used in AsBindGroup
derives, it is safe to assume that all images in self exist.Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more