pub trait ImplicitClone: Clone + Sealed {
    fn clone_quote_var(&self) -> Self { ... }
}
Expand description

Not a public API.

Implemented for types which will be implicitly cloned when used as a variable in crate::quote macro calls.

Provided Methods

Implementations on Foreign Types

Implementors