#[derive(Debug)]// PartialEq, PartialOrd ///XXX: TODO: Should this be Clone (and maybe even Copy)? Check OwnedRef below...
pubstructRef<'re,'a,T: 'a>
{
pub(super)pop: &'rePopulator<'a,T>,
@ -11,7 +10,7 @@ pub struct Ref<'re, 'a, T: 'a>
//TODO: OR: Hold a reference to the actual AtomicBool at `idx` itself?
}
#[derive(Debug)]
#[derive(Debug, Clone)]// PartialEq, PartialOrd //XXX: TODO: Should this actually be `Clone`? Ref isn't, because its supposed to be a single reference. But since this is arc'd?