Assignment

Semantics of copy construction and copy assignment.

Values

ValueMeaning
disabled

for reference counting use std.typecons.RefCounted. for safe slicing use borrown

move

only move construction allowed

copy

always copy (often not the desirable)

Meta