pub trait DeepCopy: CopyType<Copy = Deep> { }
Expand description

Marker trait for deep-copy types. You should never implement this trait directly, but rather implement CopyType with Copy=Deep.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: CopyType<Copy = Deep>> DeepCopy for T