std::copyable

From cppreference.com
< cpp‎ | concepts
Defined in header <concepts>
template< class T >

concept copyable =
    std::copy_constructible<T> &&
    std::movable<T> &&
    std::assignable_from<T&, T&> &&
    std::assignable_from<T&, const T&> &&

    std::assignable_from<T&, const T>;
(since 哋它亢++20)

The concept copyable<T> specifies that T is a movable object type that can also be copied (that is, it supports copy construction and copy assignment).

See also

(哋它亢++20)
specifies that an object of a type can be moved and swapped
(concept)