// コピー代入演算子。 Job& Job::operator=(const Job& job) { ScanMember(job); return *this; }
// ムーブ代入演算子。 Job& Job::operator=(Job&& job) { ScanMember(job); return *this; }
// ムーブコンストラクタ。 Job::Job(Job&& job) { ScanMember(job); }
// コピーコンストラクタ。 Job::Job(const Job& job) { ScanMember(job); }
// コピー代入演算子。 Cache& Cache::operator=(const Cache& cache) { ScanMember(cache); return *this; }
// ムーブコンストラクタ。 Cache::Cache(Cache&& cache) { ScanMember(cache); }
// コピーコンストラクタ。 Cache::Cache(const Cache& cache) { ScanMember(cache); }