pub trait CopyTerm: Sized {
    fn copy<T>(term: &T) -> Self
    where
        T: TTerm + ?Sized
; }
Expand description

A type that can copy any term.

Required methods

Copy term into an instance of this type.

Implementors