Struct base::descriptor_reflection::SerializeDescriptors
source · pub struct SerializeDescriptors<'a, T: Serialize>(&'a T, Cell<Vec<RawDescriptor>>);
Expand description
Wrapper for a Serialize
value which will capture any descriptors exported by the value when
given to an ordinary Serializer
.
This is the corresponding type to use for serialization before using
deserialize_with_descriptors
.
§Examples
use serde_json::to_string;
use base::{FileSerdeWrapper, SerializeDescriptors};
use tempfile::tempfile;
let tmp_f = tempfile().unwrap();
let data = FileSerdeWrapper(tmp_f);
let data_wrapper = SerializeDescriptors::new(&data);
// Serializes `v` as normal...
let out_json = serde_json::to_string(&data_wrapper).expect("failed to serialize");
// If `serialize_descriptor` was called, we can capture the descriptors from here.
let out_descriptors = data_wrapper.into_descriptors();
Tuple Fields§
§0: &'a T
§1: Cell<Vec<RawDescriptor>>
Implementations§
source§impl<'a, T: Serialize> SerializeDescriptors<'a, T>
impl<'a, T: Serialize> SerializeDescriptors<'a, T>
pub fn new(inner: &'a T) -> Self
pub fn into_descriptors(self) -> Vec<RawDescriptor>
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> !RefUnwindSafe for SerializeDescriptors<'a, T>
impl<'a, T> Send for SerializeDescriptors<'a, T>where
T: Sync,
impl<'a, T> !Sync for SerializeDescriptors<'a, T>
impl<'a, T> Unpin for SerializeDescriptors<'a, T>
impl<'a, T> UnwindSafe for SerializeDescriptors<'a, T>where
T: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more