Module epserde::traits::copy_type

source ·
Expand description

Traits to mark types as zero-copy or deep-copy.

Structs§

Traits§

  • Internal trait used to select whether a type is zero-copy or deep-copy.
  • Marker trait for data specifying whether it is zero-copy or deep-copy.
  • Marker trait for deep-copy types. You should never implement this trait directly, but rather implement CopyType with Copy=Deep.
  • Marker trait for zero-copy types. You should never implement this trait directly, but rather implement CopyType with Copy=Zero.