AtomicObject Clone

This commit is contained in:
AF 2023-06-16 06:32:33 +00:00
parent b3c6f1defd
commit cbd80a9307

View File

@ -5,6 +5,7 @@ use std::ops::Deref;
use super::*;
/// Generic implementation of a [Mentionable] for [Atomic]s.
#[derive(Clone)]
pub struct AtomicObject<A: Atomic> {
atomic: A,
}