/// Settings about the `croc` instance copying the code to the system clipboard.
#[derive(Debug, Default)]pubenumClipboardKind{/// The code will not be copied automatically by `croc`.
Disabled,/// The code will be copied automatically by `croc`.
#[default]
Enabled,/// The full `croc` command be copied automatically.
Extended,}implInto<ClipboardKind>forbool{fninto(self)-> ClipboardKind{matchself{true=>ClipboardKind::Enabled,false=>ClipboardKind::Disabled,}}}