Enum rkyv::ser::serializers::CompositeSerializerError [−][src]
pub enum CompositeSerializerError<S, C, H> {
SerializerError(S),
ScratchSpaceError(C),
SharedError(H),
}Expand description
The default serializer error.
Variants
SerializerError(S)
An error occurred while serializing
ScratchSpaceError(C)
An error occurred while using scratch space
SharedError(H)
An error occurred while serializing shared memory
Trait Implementations
Auto Trait Implementations
impl<S, C, H> RefUnwindSafe for CompositeSerializerError<S, C, H> where
C: RefUnwindSafe,
H: RefUnwindSafe,
S: RefUnwindSafe,
impl<S, C, H> Send for CompositeSerializerError<S, C, H> where
C: Send,
H: Send,
S: Send,
impl<S, C, H> Sync for CompositeSerializerError<S, C, H> where
C: Sync,
H: Sync,
S: Sync,
impl<S, C, H> Unpin for CompositeSerializerError<S, C, H> where
C: Unpin,
H: Unpin,
S: Unpin,
impl<S, C, H> UnwindSafe for CompositeSerializerError<S, C, H> where
C: UnwindSafe,
H: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Converts some archived metadata to the pointer metadata for itself.
Mutably borrows from an owned value. Read more