pub(crate) struct StructSerialize<E> {
is_human_readable: bool,
name: &'static str,
fields: Vec<(&'static str, Content)>,
error: PhantomData<E>,
}Fields§
§is_human_readable: bool§name: &'static str§fields: Vec<(&'static str, Content)>§error: PhantomData<E>Trait Implementations§
Source§impl<E> SerializeStruct for StructSerialize<E>where
E: SerError,
impl<E> SerializeStruct for StructSerialize<E>where
E: SerError,
Auto Trait Implementations§
impl<E> Freeze for StructSerialize<E>
impl<E> RefUnwindSafe for StructSerialize<E>where
E: RefUnwindSafe,
impl<E> Send for StructSerialize<E>where
E: Send,
impl<E> Sync for StructSerialize<E>where
E: Sync,
impl<E> Unpin for StructSerialize<E>where
E: Unpin,
impl<E> UnsafeUnpin for StructSerialize<E>
impl<E> UnwindSafe for StructSerialize<E>where
E: UnwindSafe,
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